:root {
  --paper: #f5f5f2;
  --paper-bright: #ffffff;
  --ink: #101010;
  --muted: #6d6d68;
  --line: #d2d2cc;
  --dark-line: #343434;
  --signal: #c7ff38;
  --hot: #ff5b45;
  --header-height: 74px;
  --page-pad: 42px;
  --content-width: 1440px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

#top,
#work,
#services,
#process,
#about,
#contact {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "SF Pro Display", "SF Pro Text", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  border: 1px solid var(--ink);
  background: var(--paper-bright);
  padding: 10px 14px;
  font-size: 14px;
}

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

.page-shell {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(16, 16, 16, 0.18);
  background: rgba(245, 245, 242, 0.88);
  backdrop-filter: blur(18px);
  transition: transform 350ms ease, background-color 350ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 245, 242, 0.96);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, var(--content-width));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  justify-self: start;
  gap: 10px;
  line-height: 1;
}

.brand-cn {
  font-size: 24px;
  font-weight: 700;
}

.brand-en {
  font-size: 9px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a,
.header-contact,
.footer-nav a {
  position: relative;
}

.desktop-nav a::after,
.header-contact::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.header-contact:hover::after,
.header-contact:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  justify-self: end;
  font-size: 13px;
  font-weight: 650;
}

.header-contact span {
  margin-left: 5px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 84svh;
  margin-top: var(--header-height);
  overflow: hidden;
  background-color: #d5d3cc;
  background-image: url("assets/images/studio-console.jpg");
  background-position: center 53%;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(247, 247, 244, 0.69);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 84svh;
  padding-top: 42px;
  padding-bottom: 36px;
}

.hero-kicker {
  font-size: 13px;
  font-weight: 650;
}

.hero h1 {
  max-width: 1080px;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 108px;
  font-weight: 650;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  margin-left: 13%;
}

.hero-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1.3fr;
  align-items: end;
  gap: 40px;
}

.hero-footer > p {
  font-size: 15px;
  font-weight: 550;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.sound-trigger,
.project-play {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.sound-trigger:hover,
.sound-trigger:focus-visible,
.project-play:hover,
.project-play:focus-visible {
  transform: scale(1.08);
}

.sound-trigger:focus-visible,
.project-play:focus-visible,
.menu-toggle:focus-visible,
.filter-button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--hot);
  outline-offset: 3px;
}

.sound-trigger-light {
  background: var(--ink);
  color: var(--paper-bright);
}

.sound-trigger.is-playing,
.project-play.is-playing {
  background: var(--hot);
  color: var(--paper-bright);
}

.play-symbol {
  display: block;
  margin-left: 2px;
  font-size: 13px;
  line-height: 1;
}

.is-playing .play-symbol {
  margin-left: 0;
  font-size: 15px;
}

.sound-label {
  display: flex;
  flex-direction: column;
  min-width: 116px;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
}

.sound-label .sound-time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid currentColor;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 650;
}

.text-link {
  min-width: 128px;
  margin-left: 26px;
}

.text-link span,
.arrow-link span {
  transition: transform 220ms ease;
}

.text-link:hover span,
.arrow-link:hover span {
  transform: translate(3px, 3px);
}

.hero-index {
  position: absolute;
  z-index: 1;
  top: 43%;
  right: -25px;
  color: rgba(16, 16, 16, 0.5);
  font-size: 10px;
  font-weight: 700;
  transform: rotate(90deg);
}

.manifesto {
  padding: 150px 0 170px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 3.15fr;
  gap: 50px;
}

.section-marker {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-marker span:first-child {
  color: var(--muted);
}

.section-marker-dark span:first-child {
  color: #8a8a84;
}

.manifesto-copy h2 {
  max-width: 1020px;
  font-size: 52px;
  font-weight: 520;
  line-height: 1.18;
}

.manifesto-copy em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.manifesto-meta {
  display: grid;
  grid-template-columns: 1fr 230px;
  align-items: end;
  gap: 70px;
  max-width: 810px;
  margin-top: 80px;
  margin-left: auto;
}

.manifesto-meta p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.showcase {
  padding: 130px 0 145px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: end;
  gap: 38px;
  margin-bottom: 70px;
}

.section-heading h2,
.services-intro h2,
.process-heading h2,
.about-copy h2 {
  font-size: 58px;
  font-weight: 560;
  line-height: 1.08;
}

.section-heading > p {
  justify-self: end;
  color: #8a8a84;
  font-size: 11px;
  font-weight: 700;
}

.showreel {
  position: relative;
  aspect-ratio: 16 / 8.2;
  min-height: 430px;
  overflow: hidden;
  background: #242424;
}

.showreel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.35) saturate(0.8) contrast(1.05);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}

.showreel:hover img {
  transform: scale(1.02);
  filter: grayscale(0) saturate(0.95) contrast(1.02);
}

.showreel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.showreel-topline {
  position: absolute;
  top: 26px;
  right: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: var(--paper-bright);
  font-size: 11px;
  font-weight: 700;
}

.showreel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--paper-bright);
  transform: translate(-50%, -50%);
}

.sound-trigger-dark {
  background: var(--paper-bright);
  color: var(--ink);
}

.sound-trigger-large {
  width: 78px;
  height: 78px;
}

.sound-trigger-large .play-symbol {
  font-size: 18px;
}

.showreel-center > div {
  display: flex;
  flex-direction: column;
  min-width: 126px;
  gap: 7px;
}

.showreel-center strong {
  font-size: 12px;
}

.showreel-center .sound-time {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.waveform {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: center;
  height: 34px;
  gap: 5px;
}

.waveform span {
  display: block;
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.68);
  transform-origin: center;
}

.showreel.is-playing .waveform span {
  animation: wave 850ms ease-in-out infinite alternate;
}

.showreel.is-playing .waveform span:nth-child(3n + 1) {
  animation-delay: -280ms;
}

.showreel.is-playing .waveform span:nth-child(3n + 2) {
  animation-delay: -520ms;
}

@keyframes wave {
  0% { height: 2px; }
  100% { height: 28px; }
}

.work {
  padding: 145px 0 180px;
}

.work-heading > p {
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  margin: 0 0 52px auto;
  border: 1px solid var(--ink);
  border-radius: 3px;
  padding: 3px;
  gap: 2px;
}

.filter-button {
  min-width: 72px;
  height: 38px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  padding: 0 17px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  transition: background-color 220ms ease, color 220ms ease;
}

.filter-button:hover {
  background: #e6e6e1;
}

.filter-button.is-active {
  background: var(--ink);
  color: var(--paper-bright);
}

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

.project {
  min-width: 0;
  transition: opacity 220ms ease, transform 350ms ease;
}

.project.is-hidden {
  display: none;
}

.project-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d7d7d1;
}

.project-wide .project-media {
  aspect-ratio: 16 / 10;
}

.project-tall .project-media {
  aspect-ratio: 4 / 5;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) saturate(0.78);
  transition: transform 750ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 400ms ease;
}

.project:hover .project-media img {
  transform: scale(1.025);
  filter: grayscale(0) saturate(1);
}

.project-code {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--paper-bright);
  padding: 7px 9px;
  font-size: 9px;
  font-weight: 750;
}

.project-play {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  background: var(--paper-bright);
  color: var(--ink);
  box-shadow: 0 4px 26px rgba(0, 0, 0, 0.17);
}

.project-info {
  padding-top: 18px;
}

.project-info > div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.project-info h3 {
  margin-top: 12px;
  font-size: 27px;
  font-weight: 620;
  line-height: 1.3;
}

.project-info p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.services {
  padding: 0 0 170px;
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: start;
  gap: 50px;
  padding-top: 125px;
  border-top: 1px solid var(--line);
}

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

.service-row {
  display: grid;
  grid-template-columns: 0.45fr 1.2fr 1.6fr 34px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid var(--line);
  padding: 24px 20px 24px 0;
  transition: background-color 300ms ease, color 300ms ease, padding 300ms ease;
}

.service-row:hover {
  background: var(--ink);
  color: var(--paper-bright);
  padding-right: 20px;
  padding-left: 20px;
}

.service-number,
.service-row p {
  color: var(--muted);
  font-size: 12px;
}

.service-row:hover .service-number,
.service-row:hover p {
  color: #bdbdb7;
}

.service-row h3 {
  font-size: 40px;
  font-weight: 580;
}

.service-row p {
  line-height: 1.7;
}

.service-arrow {
  justify-self: end;
  font-size: 22px;
  transition: transform 250ms ease;
}

.service-row:hover .service-arrow {
  transform: rotate(45deg);
}

.process {
  padding: 140px 0 155px;
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 130px;
}

.process-step {
  min-width: 0;
}

.process-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  color: #868680;
}

.process-line span {
  height: 1px;
  background: var(--dark-line);
}

.process-line i {
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.process-step h3 {
  margin-top: 52px;
  font-size: 34px;
  font-weight: 560;
}

.process-step p {
  max-width: 260px;
  min-height: 102px;
  margin-top: 22px;
  color: #a6a6a0;
  font-size: 13px;
  line-height: 1.75;
}

.process-en {
  display: block;
  margin-top: 42px;
  color: var(--signal);
  font-size: 10px;
  font-weight: 750;
}

.about {
  padding: 160px 0 170px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px 100px;
}

.about-copy .section-marker {
  margin-bottom: 70px;
}

.about-copy > p {
  max-width: 570px;
  margin-top: 45px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.about-visual {
  position: relative;
  align-self: end;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.72) contrast(1.08);
}

.about-visual span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: var(--paper-bright);
  padding: 8px 9px;
  font-size: 9px;
  font-weight: 750;
}

.stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--ink);
}

.stat {
  min-height: 205px;
  border-right: 1px solid var(--line);
  padding: 34px 34px 26px 0;
}

.stat:not(:first-child) {
  padding-left: 34px;
}

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

.stat strong,
.stat > span {
  font-size: 70px;
  font-weight: 540;
  font-variant-numeric: tabular-nums;
}

.stat > span {
  margin-left: 6px;
  color: var(--muted);
  font-size: 22px;
}

.stat p {
  margin-top: 44px;
  color: var(--muted);
  font-size: 12px;
}

.contact {
  background: var(--signal);
  color: var(--ink);
  padding: 72px 0 88px;
}

.contact-topline {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(16, 16, 16, 0.5);
  padding-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
}

.contact h2 {
  margin-top: 90px;
  font-size: 104px;
  font-weight: 650;
  line-height: 0.98;
}

.contact-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 90px;
}

.contact-mail {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 6px;
  font-size: 18px;
  font-weight: 650;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  min-height: 56px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 250ms ease, color 250ms ease;
}

.contact-button:hover {
  background: var(--ink);
  color: var(--paper-bright);
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 68px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: end;
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.footer-brand > span {
  font-size: 62px;
  font-weight: 650;
  line-height: 1;
}

.footer-brand small {
  font-size: 9px;
  font-weight: 750;
}

.footer-nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  font-weight: 650;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  color: #9a9a94;
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

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

@media (max-width: 1100px) {
  :root {
    --page-pad: 28px;
  }

  .hero h1 {
    font-size: 84px;
  }

  .manifesto-copy h2 {
    font-size: 44px;
  }

  .section-heading h2,
  .services-intro h2,
  .process-heading h2,
  .about-copy h2 {
    font-size: 48px;
  }

  .contact h2 {
    font-size: 82px;
  }

  .about-grid {
    gap: 70px 58px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
    --page-pad: 20px;
  }

  .header-inner {
    position: relative;
    z-index: 102;
    grid-template-columns: 1fr auto;
    height: var(--header-height);
  }

  .site-header.menu-active {
    height: 100svh;
    background: var(--paper);
    backdrop-filter: none;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    place-content: center;
    justify-self: end;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    gap: 6px;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 1px;
    background: var(--ink);
    transition: transform 250ms ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--paper);
    padding: 90px var(--page-pad) 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: baseline;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    font-size: 40px;
    font-weight: 620;
  }

  .mobile-menu a span {
    color: var(--muted);
    font-size: 10px;
  }

  .hero {
    min-height: 84svh;
    background-position: 48% center;
  }

  .hero-content {
    min-height: 84svh;
    padding-top: 28px;
    padding-bottom: 26px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero h1 span:last-child {
    margin-left: 7%;
  }

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

  .hero-footer > p {
    max-width: 420px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .text-link {
    margin-left: auto;
  }

  .manifesto,
  .showcase,
  .work,
  .process,
  .about {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .manifesto-grid,
  .services-intro,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .manifesto-copy h2 {
    font-size: 39px;
  }

  .manifesto-meta {
    margin-top: 60px;
  }

  .section-heading {
    grid-template-columns: 1fr 2fr;
  }

  .section-heading > p {
    display: none;
  }

  .section-heading h2,
  .services-intro h2,
  .process-heading h2,
  .about-copy h2 {
    font-size: 43px;
  }

  .showreel {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .project-grid {
    gap: 66px 20px;
  }

  .project-info h3 {
    font-size: 22px;
  }

  .services {
    padding-bottom: 110px;
  }

  .services-intro {
    padding-top: 100px;
  }

  .service-row {
    grid-template-columns: 0.3fr 0.8fr 1.4fr 24px;
  }

  .service-row h3 {
    font-size: 32px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 30px;
    margin-top: 90px;
  }

  .process-step p {
    min-height: 84px;
  }

  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px 38px;
  }

  .stat strong {
    font-size: 58px;
  }

  .contact h2 {
    font-size: 68px;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    align-items: flex-start;
    border-top: 1px solid var(--dark-line);
    padding-top: 24px;
  }
}

@media (max-width: 580px) {
  :root {
    --page-pad: 16px;
  }

  .brand-cn {
    font-size: 21px;
  }

  .hero {
    min-height: 82svh;
    background-position: 56% center;
  }

  .hero-shade {
    background: rgba(247, 247, 244, 0.74);
  }

  .hero-content {
    min-height: 82svh;
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .hero-kicker {
    max-width: 270px;
    font-size: 11px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: 49px;
    line-height: 1.02;
  }

  .hero h1 span:last-child {
    margin-top: 3px;
    margin-left: 0;
  }

  .hero-footer > p {
    font-size: 12px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: auto 1fr auto;
    width: 100%;
  }

  .text-link {
    min-width: auto;
    margin-left: 0;
  }

  .hero-index {
    display: none;
  }

  .manifesto,
  .showcase,
  .work,
  .process,
  .about {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .manifesto-grid,
  .services-intro,
  .process-heading {
    gap: 38px;
  }

  .manifesto-copy h2,
  .section-heading h2,
  .services-intro h2,
  .process-heading h2,
  .about-copy h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .manifesto-meta {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }

  .manifesto-meta .arrow-link {
    max-width: 210px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 42px;
  }

  .section-heading .section-marker {
    order: 0;
  }

  .showreel {
    aspect-ratio: 3 / 4;
  }

  .showreel img {
    object-position: 56% center;
  }

  .showreel-topline {
    top: 18px;
    right: 16px;
    left: 16px;
  }

  .showreel-topline span:first-child {
    max-width: 230px;
    line-height: 1.5;
  }

  .showreel-center {
    flex-direction: column;
    text-align: center;
  }

  .waveform {
    right: 16px;
    bottom: 18px;
    left: 16px;
    gap: 3px;
  }

  .filter-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-bottom: 38px;
  }

  .filter-button {
    min-width: 0;
    padding: 0 8px;
  }

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

  .project-media,
  .project-wide .project-media,
  .project-tall .project-media {
    aspect-ratio: 4 / 3;
  }

  .project-tall .project-media img {
    object-position: center 30%;
  }

  .project-info h3 {
    font-size: 23px;
  }

  .services {
    padding-bottom: 88px;
  }

  .services-intro {
    padding-top: 82px;
  }

  .service-list {
    margin-top: 70px;
  }

  .service-row {
    grid-template-columns: 34px 1fr 24px;
    min-height: 112px;
    padding: 20px 4px 20px 0;
  }

  .service-row h3 {
    font-size: 29px;
  }

  .service-row p {
    grid-column: 2 / 4;
    margin-top: 9px;
    font-size: 11px;
  }

  .service-row:hover {
    padding-right: 12px;
    padding-left: 12px;
  }

  .service-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 80px;
  }

  .process-step h3 {
    margin-top: 32px;
  }

  .process-step p {
    min-height: 0;
  }

  .process-en {
    margin-top: 28px;
  }

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

  .about-copy .section-marker {
    margin-bottom: 38px;
  }

  .about-copy > p {
    margin-top: 34px;
    font-size: 13px;
  }

  .about-visual img {
    aspect-ratio: 4 / 3;
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  .stat,
  .stat:not(:first-child) {
    min-height: 138px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 27px 0 20px;
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .stat strong {
    font-size: 52px;
  }

  .stat p {
    margin-top: 18px;
  }

  .contact {
    padding: 54px 0 62px;
  }

  .contact-topline {
    align-items: flex-end;
    gap: 20px;
  }

  .contact-topline span:last-child {
    max-width: 120px;
    text-align: right;
    line-height: 1.5;
  }

  .contact h2 {
    margin-top: 74px;
    font-size: 48px;
    line-height: 1.05;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 42px;
    margin-top: 72px;
  }

  .contact-mail {
    width: fit-content;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  .contact-button {
    width: 100%;
  }

  .site-footer {
    padding: 52px 0 36px;
  }

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

  .footer-brand > span {
    font-size: 54px;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .footer-meta {
    grid-column: auto;
  }
}

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

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

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