:root {
  --paper: #e7e6e2;
  --paper-dk: #ddd9d1;
  --paper-soft: #efede7;
  --ink: #151310;
  --ink-soft: #48443e;
  --ink-faint: rgba(21, 19, 16, 0.42);
  --ink-line: rgba(21, 19, 16, 0.14);
  --accent: #c24a2c;
  --moss: #344138;
  --display: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --body: "Noto Sans SC", "PingFang SC", system-ui, sans-serif;
  --editorial: "Noto Serif SC", "Songti SC", "STSong", serif;
  --en: "Geist", system-ui, -apple-system, sans-serif;
  --mono: "Geist Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  cursor: none;
  font-family: var(--body);
  font-feature-settings: "palt" 1;
  font-weight: 400;
  line-height: 1.6;
}

body[data-theme="cinema"] {
  --paper: #12100f;
  --paper-dk: #201b18;
  --paper-soft: #181513;
  --ink: #f2ede2;
  --ink-soft: rgba(242, 237, 226, 0.68);
  --ink-faint: rgba(242, 237, 226, 0.38);
  --ink-line: rgba(242, 237, 226, 0.16);
  --accent: #df6341;
  --moss: #7a8060;
}

body[data-theme="clean"] {
  --paper: #f5f4f0;
  --paper-dk: #ece9e2;
  --paper-soft: #fbfaf7;
  --ink: #111111;
  --ink-soft: #52504b;
  --ink-faint: rgba(17, 17, 17, 0.34);
  --ink-line: rgba(17, 17, 17, 0.12);
  --accent: #b8482e;
  --moss: #51625c;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(ellipse at 15% 24%, rgba(0, 0, 0, 0.04) 0%, transparent 54%),
    radial-gradient(ellipse at 84% 76%, rgba(0, 0, 0, 0.05) 0%, transparent 54%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.65' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .11 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: multiply;
  opacity: 0.38;
  pointer-events: none;
}

main,
footer,
nav {
  position: relative;
  z-index: 2;
}

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

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

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: none;
  font: inherit;
}

body.project-page,
body.contact-page {
  cursor: auto;
}

body.project-page button,
body.project-page a,
body.contact-page button,
body.contact-page a {
  cursor: pointer;
}

a,
button {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: var(--paper-soft);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10000;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.draft-intro {
  position: fixed;
  inset: 0;
  z-index: 9000;
  overflow: hidden;
  background: #e6e6e8;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 520ms ease, visibility 0ms linear 520ms;
}

.draft-intro.is-dismissing {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.draft-intro__poster,
.draft-intro__poster img,
.draft-intro__film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.draft-intro__poster {
  background: #e6e6e8;
}

.draft-intro__poster img {
  display: block;
}

.draft-intro__film {
  z-index: 1;
  background: #e6e6e8;
}

.cur {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  mix-blend-mode: difference;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 350ms cubic-bezier(0.22, 1, 0.36, 1),
    height 350ms cubic-bezier(0.22, 1, 0.36, 1),
    background 300ms,
    mix-blend-mode 250ms;
}

.cur.hover {
  width: 64px;
  height: 64px;
  background: var(--accent);
  mix-blend-mode: normal;
}

.cur.hover-light {
  width: 64px;
  height: 64px;
  background: var(--paper);
  mix-blend-mode: normal;
}

.nav {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  background: var(--ink);
  box-shadow: 0 10px 28px -10px rgba(21, 19, 16, 0.34);
  color: var(--paper);
  padding: 7px 7px 7px 22px;
  transform: translateX(-50%);
}

.nav__brand {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border-right: 1px solid rgba(239, 237, 231, 0.18);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding-right: 18px;
}

.nav__brand::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.6s ease-in-out infinite;
  content: "";
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.28;
  }
}

.nav__links {
  display: flex;
  gap: 2px;
}

.nav__links a {
  min-height: 42px;
  border-radius: 100px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  transition:
    background 300ms,
    color 300ms;
}

.nav__links a:hover {
  background: rgba(239, 237, 231, 0.11);
}

.nav__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  border-radius: 100px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  transition:
    background 300ms,
    color 300ms,
    transform 300ms;
}

.nav__cta::after {
  color: var(--accent);
  content: "↗";
  font-family: var(--en);
  font-size: 14px;
  line-height: 1;
  transition: color 300ms;
}

.nav__cta:hover {
  background: var(--accent);
  color: var(--paper);
  transform: scale(1.04);
}

.nav__cta:hover::after {
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  padding: 132px 36px 64px;
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.hero__eyebrow strong {
  color: var(--accent);
  font-weight: 500;
}

.hero__title {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin-bottom: 52px;
  color: var(--ink);
  font-family: var(--editorial);
  font-size: clamp(52px, 8.25vw, 148px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.11;
  text-wrap: balance;
}

.hero__title .em {
  color: var(--accent);
  font-weight: 500;
}

.hero__title .en {
  display: inline-block;
  border: 1px solid var(--ink-faint);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--en);
  font-size: 0.18em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0.12em;
  padding: 0.48em 0.72em 0.52em;
  vertical-align: 0.62em;
}

.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  will-change: transform, opacity;
}

.hero__row {
  display: grid;
  align-items: start;
  gap: 60px;
  grid-template-columns: 1.28fr 1fr;
  margin-top: 92px;
  border-top: 1px solid var(--ink-line);
  padding-top: 32px;
}

.hero__sub {
  max-width: 620px;
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.82;
}

.hero__sub strong {
  color: var(--accent);
  font-weight: 500;
}

.underline-accent {
  background-image: linear-gradient(transparent 70%, rgba(194, 74, 44, 0.23) 70%);
  font-weight: 400;
}

.hero__meta {
  display: flex;
  flex-direction: column;
}

.hero__meta > div {
  display: grid;
  align-items: baseline;
  gap: 20px;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid var(--ink-line);
  padding: 16px 0;
}

.hero__meta > div:last-child {
  border-bottom: 0;
}

.hero__meta dt {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__meta dd {
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.hero__meta .en {
  color: var(--ink-soft);
  font-family: var(--en);
  font-size: 0.9em;
  font-weight: 300;
  margin-left: 2px;
}

.shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  will-change: transform;
}

.shape--pill {
  top: 18%;
  right: 6%;
  width: 124px;
  height: 40px;
  border-radius: 100px;
  background: var(--accent);
  transform: rotate(-10deg);
}

.shape--circle {
  top: 57%;
  right: 16%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--moss);
}

.shape--ring {
  top: 10%;
  right: 32%;
  width: 66px;
  height: 66px;
  border: 3px solid var(--accent);
  border-radius: 50%;
}

.shape--square {
  top: 40%;
  left: 8%;
  width: 44px;
  height: 44px;
  background: var(--moss);
  transform: rotate(15deg);
}

.shape--dot {
  bottom: 18%;
  left: 22%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__big-num {
  position: absolute;
  right: 36px;
  bottom: 48px;
  z-index: 1;
  color: transparent;
  font-family: var(--en);
  font-size: clamp(120px, 22vw, 380px);
  font-weight: 200;
  letter-spacing: -0.065em;
  line-height: 0.85;
  pointer-events: none;
  white-space: nowrap;
  -webkit-text-stroke: 1px var(--ink-line);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: var(--paper-soft);
  padding: 52px 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: scroll-x 38s linear infinite;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 78px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }

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

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 64px;
}

.marquee__item .em {
  color: var(--accent);
  font-weight: 400;
}

.marquee__item::after {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  display: inline-block;
  margin-left: 16px;
}

.intro {
  display: grid;
  max-width: 1400px;
  align-items: end;
  gap: clamp(32px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  margin: 0 auto;
  padding: 132px 36px 44px;
}

.intro__lead span,
.services__head span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro__lead h2,
.services__head h2 {
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(40px, 6.6vw, 118px);
  font-weight: 200;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.intro__notes {
  display: grid;
}

.intro__notes article {
  display: grid;
  gap: 14px;
  grid-template-columns: 54px 1fr;
  border-top: 1px solid var(--ink-line);
  padding: 18px 0;
}

.intro__notes b {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.intro__notes p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
}

.work-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 92px 36px 80px;
}

.work-section__head {
  display: grid;
  align-items: baseline;
  gap: 40px;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--ink-line);
  padding-bottom: 28px;
}

.work-section__num {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-section__h {
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 80px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1;
}

.work-section__h .em {
  color: var(--accent);
  font-weight: 400;
}

.work-section__count {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.wcard {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-dk);
}

.wcard__media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.94);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.wcard:hover img {
  transform: scale(1.06);
}

.wcard__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: var(--paper);
  padding: 28px;
}

.wcard__overlay::before {
  position: absolute;
  inset: -120px 0 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(21, 19, 16, 0.82) 0%, rgba(21, 19, 16, 0) 100%);
  content: "";
  pointer-events: none;
}

.wcard__title {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.wcard__title .en {
  color: rgba(239, 237, 231, 0.72);
  font-family: var(--en);
  font-size: 0.8em;
  font-style: italic;
  font-weight: 300;
}

.wcard__sub {
  margin-top: 6px;
  color: rgba(239, 237, 231, 0.7);
  font-family: var(--en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wcard__client {
  flex-shrink: 0;
  opacity: 0.84;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.wcard__client strong {
  display: block;
  color: var(--paper);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.wcard__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  background: rgba(239, 237, 231, 0.94);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 7px 11px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.wcard__badge::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.4s ease-in-out infinite;
  content: "";
}

.wcard__play {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(239, 237, 231, 0.52);
  border-radius: 50%;
  background: rgba(21, 19, 16, 0.28);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
  transition:
    background 260ms ease,
    transform 260ms ease;
}

.wcard:hover .wcard__play {
  background: var(--accent);
  transform: rotate(-8deg) scale(1.04);
}

.wcard--feat {
  grid-column: span 8;
  aspect-ratio: 4 / 3;
}

.wcard--side {
  grid-column: span 4;
  aspect-ratio: 2 / 3;
}

.photo-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 36px 120px;
}

.photo-section__head {
  display: grid;
  align-items: end;
  gap: 24px;
  grid-template-columns: 0.45fr minmax(0, 0.9fr) minmax(280px, 0.65fr);
  margin-bottom: 42px;
  border-bottom: 1px solid var(--ink-line);
  padding-bottom: 28px;
}

.photo-section__num {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.photo-section__h {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
}

.photo-section__h .em {
  color: var(--accent);
  font-weight: 400;
}

.photo-section__text {
  max-width: 420px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.photo-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.7fr));
}

.photo-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 620px;
  align-items: end;
  border-radius: 8px;
  background: var(--paper-dk);
}

.photo-card--stack {
  min-height: 520px;
}

.photo-card__media,
.photo-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photo-card__media img {
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-card:hover .photo-card__media img {
  transform: scale(1.04);
}

.photo-card__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 26px;
  color: var(--paper);
}

.photo-card__copy::before {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 180px;
  background: linear-gradient(to top, rgba(21, 19, 16, 0.85), rgba(21, 19, 16, 0));
  content: "";
}

.photo-card__copy span {
  color: rgba(239, 237, 231, 0.68);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photo-card__copy h3 {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}

.photo-card__copy p {
  max-width: 420px;
  color: rgba(239, 237, 231, 0.8);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.wcard--wide,
.wcard--mid {
  grid-column: span 6;
  aspect-ratio: 16 / 10;
}

.spotlight {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 36px 108px;
}

.spotlight__head {
  display: grid;
  align-items: end;
  gap: 24px;
  grid-template-columns: 0.45fr 1fr;
  margin-bottom: 32px;
}

.spotlight__head span,
.process__head span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.spotlight__head h2,
.process__head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5.2vw, 78px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
}

.spotlight__frame {
  position: relative;
  display: grid;
  min-height: min(72vw, 820px);
  overflow: hidden;
  align-items: end;
  border-radius: 8px;
  background: var(--paper-dk);
}

.spotlight__frame::after {
  position: absolute;
  inset: auto 0 0;
  height: min(52%, 420px);
  background: linear-gradient(to top, rgba(21, 19, 16, 0.82), transparent);
  content: "";
  pointer-events: none;
}

.spotlight__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.spotlight__frame:hover img {
  transform: scale(1.03);
}

.spotlight__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  color: var(--paper-soft);
  padding: clamp(24px, 4vw, 54px);
}

.spotlight__copy p {
  max-width: 720px;
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 300;
  line-height: 1.5;
}

.spotlight__copy small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services {
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 36px 126px;
}

.services__head {
  display: grid;
  align-items: end;
  gap: 24px;
  grid-template-columns: 0.45fr 1fr;
  margin-bottom: 54px;
}

.services__stage {
  display: grid;
  align-items: start;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
}

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

.service-list article {
  display: grid;
  align-items: center;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.72fr) 1fr;
  min-height: 150px;
  border-bottom: 1px solid var(--ink-line);
  transition:
    background 260ms ease,
    padding 260ms ease,
    color 260ms ease;
  cursor: pointer;
}

.service-list article:hover,
.service-list article.is-active {
  background: rgba(239, 237, 231, 0.52);
  padding-inline: 22px;
}

.service-list article.is-active h3 {
  color: var(--accent);
}

.service-list h3 {
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 76px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-list p {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
}

.service-preview {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.72);
  box-shadow: 0 24px 48px -40px rgba(21, 19, 16, 0.28);
  backdrop-filter: blur(18px);
}

.service-preview__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-dk);
}

.service-preview__media img,
.service-preview__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-preview__body {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
}

.service-preview__eyebrow {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-preview__title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-preview__text {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.process {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 36px 126px;
}

.process__head {
  display: grid;
  align-items: end;
  gap: 24px;
  grid-template-columns: 0.45fr 1fr;
  margin-bottom: 42px;
}

.process__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.process__grid article {
  min-height: 280px;
  border-bottom: 1px solid var(--ink-line);
  padding: 28px 0 22px;
}

.process__grid b {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.process__grid h3 {
  margin-top: 58px;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.process__grid p {
  max-width: 360px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.72;
}

.approach {
  max-width: 1400px;
  margin: 0 auto;
  padding: 128px 36px 112px;
  border-top: 1px solid var(--ink-line);
}

.approach__h {
  margin-bottom: 80px;
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 128px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
}

.approach__h .em {
  color: var(--accent);
  font-weight: 400;
}

.photo-inline {
  display: inline-block;
  width: 1em;
  height: 0.65em;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  filter: contrast(1.06);
  margin: 0 0.08em;
  transform: rotate(-3deg);
  vertical-align: -0.08em;
}

.approach__grid {
  display: grid;
  align-items: start;
  gap: 100px;
  grid-template-columns: 1.2fr 1fr;
}

.approach__body p {
  margin-bottom: 22px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.95;
}

.quote {
  display: block;
  margin: 28px 0;
  border-left: 2px solid var(--accent);
  color: var(--ink);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.005em;
  line-height: 1.56;
  padding: 6px 0 6px 24px;
}

.approach__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  border-top: 1px solid var(--ink-line);
  list-style: none;
  padding-top: 30px;
}

.approach__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.approach__list li::before {
  color: var(--accent);
  content: "—";
  flex-shrink: 0;
  font-family: var(--en);
  margin-top: 1px;
}

.approach__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  margin-top: 44px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 17px 30px;
  transition:
    background 300ms,
    transform 300ms;
}

.approach__cta::after {
  content: "↗";
  font-family: var(--en);
  font-size: 16px;
}

.approach__cta:hover {
  background: var(--accent);
  transform: translateX(4px);
}

.approach__visuals {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.approach__visual {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  filter: contrast(1.05);
  will-change: transform;
}

.approach__visual--tall {
  grid-row: span 2;
  aspect-ratio: 3 / 5;
}

.stats {
  max-width: 1400px;
  margin: 0 auto;
  padding: 52px 36px 100px;
}

.stats__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 50px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat__num {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat__num .small {
  color: var(--accent);
  font-size: 0.45em;
  font-weight: 400;
  vertical-align: 0.35em;
}

.stat__cn {
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
}

.stat__label {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.final {
  background: var(--paper-dk);
  padding: 190px 36px 150px;
  text-align: center;
}

.final__h {
  max-width: 1320px;
  margin: 0 auto 58px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(48px, 8.5vw, 168px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.final__h .em {
  color: var(--accent);
  font-weight: 400;
}

.final__sub {
  max-width: 640px;
  margin: 0 auto 58px;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.75;
}

.final__cta {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  gap: 14px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 22px 40px;
  transition:
    background 350ms,
    transform 350ms;
}

.final__cta::after {
  content: "↗";
  font-family: var(--en);
  font-size: 20px;
}

.final__cta:hover {
  background: var(--accent);
  transform: scale(1.04);
}

.final__cta .mono {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.signature {
  overflow: hidden;
  background: var(--paper);
  padding: 0 36px 38px;
}

.signature__stage {
  display: flex;
  min-height: clamp(300px, 42vw, 760px);
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: clamp(36px, 5vw, 84px) 0 0;
}

.signature__word {
  display: block;
  width: max-content;
  color: var(--ink);
  font-family: var(--en);
  font-size: clamp(138px, 23vw, 476px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.76;
  text-align: center;
  text-transform: uppercase;
  transform: scaleY(0.58);
  transform-origin: center bottom;
  will-change: transform;
}

.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 88px 36px 36px;
}

.foot__big {
  display: grid;
  align-items: center;
  gap: 40px;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 1px solid rgba(239, 237, 231, 0.15);
  padding-bottom: 70px;
}

.foot__big-l,
.foot__big-r {
  font-family: var(--display);
  font-size: clamp(70px, 17vw, 300px);
  font-weight: 200;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.foot__big-r {
  color: var(--accent);
  font-family: var(--en);
  font-style: italic;
  text-align: right;
}

.foot__big-mid {
  min-width: 200px;
  color: rgba(239, 237, 231, 0.58);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: center;
}

.foot__big-mid .accent {
  color: var(--accent);
}

.foot__cols {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(239, 237, 231, 0.15);
  padding: 60px 0 40px;
}

.foot__cols h5 {
  margin-bottom: 22px;
  color: rgba(239, 237, 231, 0.52);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.foot__cols ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.foot__cols a {
  display: inline-block;
  min-height: 32px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 300;
  transition:
    color 300ms,
    padding-left 300ms;
}

.foot__cols a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.en-tag {
  color: rgba(239, 237, 231, 0.45);
  font-family: var(--en);
  font-size: 0.78em;
  margin-left: 8px;
}

.foot__bot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
  color: rgba(239, 237, 231, 0.45);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-page {
  cursor: auto;
}

.project {
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 36px 120px;
}

.project__back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project__back::before {
  color: var(--accent);
  content: "←";
  font-size: 16px;
}

.project__hero {
  display: grid;
  gap: 26px;
  padding: clamp(56px, 8vw, 110px) 0 48px;
}

.project__hero > p {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project__hero h1 {
  max-width: 1120px;
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 150px);
  font-weight: 200;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.project__intro {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 300;
  line-height: 1.7;
}

.project__hero dl {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid var(--ink-line);
  padding-top: 24px;
}

.project__hero dl > div {
  min-width: 150px;
}

.project__hero dt {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project__hero dd {
  margin-top: 6px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 300;
}

.project__media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-dk);
}

.project__media video,
.project__media img,
.project__gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.project__media video,
.project__media img {
  min-height: min(74vw, 860px);
  max-height: 1080px;
}

.project__gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 18px;
}

.project__gallery img {
  min-height: clamp(280px, 42vw, 720px);
  background: var(--paper-dk);
}

.project__cta,
.project__missing {
  display: grid;
  justify-items: start;
  gap: 24px;
  margin-top: 88px;
  border-top: 1px solid var(--ink);
  padding-top: 34px;
}

.project__cta p,
.project__missing p {
  max-width: 720px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 68px);
  font-weight: 200;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.project__cta a,
.project__missing a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 15px;
  padding: 14px 24px;
}

.contact-page {
  min-height: 100vh;
  padding: 120px 36px 80px;
}

.contact-layout {
  display: grid;
  max-width: 1400px;
  gap: 32px;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  margin: 0 auto;
}

.contact-card,
.contact-form {
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  background: rgba(251, 250, 247, 0.8);
  padding: 28px;
  backdrop-filter: blur(14px);
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.contact-card__eyebrow,
.contact-form__eyebrow {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card__title,
.contact-form__title {
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 74px);
  font-weight: 200;
  letter-spacing: -0.05em;
  line-height: 1;
}

.contact-card__text,
.contact-form__hint {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.contact-card__qr {
  display: block;
  width: min(100%, 420px);
  border-radius: 8px;
  background: #111;
}

.contact-card__meta {
  display: grid;
  gap: 10px;
  padding-top: 10px;
}

.contact-card__meta b {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.contact-card__meta span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 18px;
}

.contact-form__grid {
  display: grid;
  gap: 14px 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field span {
  color: var(--ink-soft);
  font-size: 13px;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

.contact-form__field textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form__preview {
  min-height: 180px;
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  background: rgba(21, 19, 16, 0.03);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  padding: 14px;
  white-space: pre-wrap;
}

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

.contact-form__button,
.contact-form__ghost {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  padding: 12px 22px;
}

.contact-form__button {
  background: var(--ink);
  color: var(--paper);
}

.contact-form__status {
  min-height: 24px;
  color: var(--accent);
  font-size: 13px;
}

.debug {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 9998;
  display: none;
  border-radius: 6px;
  background: rgba(21, 19, 16, 0.92);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 8px 12px;
  pointer-events: none;
}

.debug.is-error {
  display: block;
  color: #ffb5aa;
}

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

  button {
    cursor: pointer;
  }

  .cur {
    display: none;
  }

  .nav {
    top: 14px;
    max-width: calc(100vw - 28px);
    padding: 6px 6px 6px 16px;
  }

  .nav__brand {
    font-size: 15px;
    padding-right: 12px;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    padding: 9px 14px;
    font-size: 12px;
  }

  .hero {
    padding: 108px 20px 60px;
  }

  .hero__eyebrow {
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero__title {
    max-width: 560px;
    margin-bottom: 34px;
    font-size: clamp(42px, 10.9vw, 72px);
    letter-spacing: 0;
    line-height: 1.18;
  }

  .hero__title .en {
    font-size: 0.22em;
  }

  .hero__row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 62px;
  }

  .hero__meta > div {
    grid-template-columns: 80px 1fr;
    gap: 14px;
    padding: 12px 0;
  }

  .hero__meta dd {
    font-size: 17px;
  }

  .hero__big-num {
    right: 20px;
    bottom: 24px;
    font-size: 30vw;
  }

  .shape {
    transform: scale(0.6);
  }

  .shape--pill {
    right: 4%;
  }

  .marquee {
    padding: 32px 0;
  }

  .marquee__track {
    gap: 32px;
    font-size: 38px;
  }

  .marquee__item {
    gap: 32px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 78px 20px 28px;
  }

  .work-section {
    padding: 72px 20px 40px;
  }

  .work-section__head {
    grid-template-columns: auto 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .work-section__count {
    grid-column: 1 / -1;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wcard--feat,
  .wcard--side,
  .wcard--wide,
  .wcard--mid {
    grid-column: span 1;
    aspect-ratio: 16 / 11;
  }

  .wcard__overlay {
    padding: 20px;
  }

  .wcard__play {
    width: 60px;
    height: 60px;
  }

  .spotlight {
    padding: 24px 20px 72px;
  }

  .photo-section {
    padding: 12px 20px 80px;
  }

  .photo-section__head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .photo-card,
  .photo-card--stack {
    min-height: 112vw;
  }

  .spotlight__head,
  .spotlight__copy,
  .process__head {
    grid-template-columns: 1fr;
  }

  .spotlight__frame {
    min-height: 126vw;
  }

  .services {
    padding: 68px 20px 80px;
  }

  .services__head,
  .service-list article {
    grid-template-columns: 1fr;
  }

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

  .service-preview {
    position: relative;
    top: 0;
    order: -1;
  }

  .service-list article {
    min-height: 0;
    gap: 12px;
    padding: 24px 0;
  }

  .process {
    padding: 0 20px 80px;
  }

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

  .process__grid article {
    min-height: 0;
    padding: 24px 0;
  }

  .process__grid h3 {
    margin-top: 24px;
  }

  .approach {
    padding: 80px 20px;
  }

  .approach__h {
    margin-bottom: 50px;
  }

  .approach__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .approach__visual--tall {
    grid-row: span 1;
    aspect-ratio: 3 / 4;
  }

  .stats {
    padding: 30px 20px 60px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 30px 0;
  }

  .final {
    padding: 100px 20px 80px;
  }

  .signature {
    padding: 0 20px 28px;
  }

  .contact-page {
    padding: 104px 20px 60px;
  }

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

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

  .signature__stage {
    min-height: clamp(180px, 52vw, 340px);
    padding-top: 22px;
  }

  .signature__word {
    font-size: clamp(82px, 22vw, 158px);
    line-height: 0.82;
  }

  .foot {
    padding: 60px 20px 24px;
  }

  .foot__big {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .foot__big-r {
    text-align: center;
  }

  .foot__cols {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 0 28px;
  }

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

  .project {
    padding: 24px 20px 80px;
  }

  .project__hero {
    padding-top: 48px;
  }

  .project__media video,
  .project__media img {
    min-height: 118vw;
  }

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

@media (hover: none) {
  body {
    cursor: auto;
  }

  .cur {
    display: none;
  }
}

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

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

  .hero__title .char {
    opacity: 1 !important;
    transform: none !important;
  }

  .draft-intro {
    display: none;
  }

  .signature__word {
    transform: none !important;
  }
}
