:root {
  color-scheme: dark;
  --bg: #090a0b;
  --bg-soft: #0e1011;
  --panel: #111415;
  --panel-light: #171a1b;
  --line: rgba(232, 230, 222, 0.14);
  --line-strong: rgba(232, 230, 222, 0.28);
  --text: #eeeae1;
  --muted: #9b9f9e;
  --muted-dark: #747978;
  --amber: #c69a63;
  --cyan: #76b8bc;
  --lime: #a7c97a;
  --silver: #a9adb0;
  --page: min(1700px, calc(100% - 96px));
  font-family:
    "Inter", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

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

button {
  font: inherit;
}

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

.section-shell {
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #08090a;
}

.hero__fallback {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(164, 195, 195, 0.07) 42.2%, transparent 42.5%),
    linear-gradient(74deg, transparent 0 68%, rgba(198, 154, 99, 0.08) 68.2%, transparent 68.5%),
    linear-gradient(135deg, #111719 0%, #090b0c 45%, #171211 100%);
}

.hero__fallback::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.3;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(8.333% - 1px),
    rgba(255, 255, 255, 0.06) calc(8.333% - 1px),
    rgba(255, 255, 255, 0.06) 8.333%
  );
  animation: fallback-drift 18s linear infinite;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(0.62) contrast(1.16) brightness(0.52);
  transition: opacity 0.8s ease;
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.9) 0%, rgba(8, 9, 10, 0.25) 62%, rgba(8, 9, 10, 0.58) 100%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.82) 0%, transparent 30%, rgba(8, 9, 10, 0.9) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 64%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1.5px);
  background-size: 5px 5px, 7px 7px;
}

.site-header {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1480px, calc(100% - 96px));
  height: 74px;
  margin: 22px auto 0;
  padding: 0 10px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(12, 14, 15, 0.58);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.brand__mark {
  font-size: 17px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand__divider {
  width: 1px;
  height: 18px;
  background: var(--line-strong);
}

.brand__text {
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.desktop-nav a {
  position: relative;
  color: #c8c7c2;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.header-contact:hover {
  color: #0b0c0d;
  background: var(--text);
  border-color: var(--text);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(8, 9, 10, 0.6);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: var(--page);
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  padding: 64px 0 126px;
  text-align: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  color: #bbbcb8;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(167, 201, 122, 0.09);
}

.hero h1 {
  max-width: 1300px;
  margin: 0;
  font-family:
    "Arial Narrow", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: 154px;
  font-weight: 650;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 24px;
  color: transparent;
  font-size: 0.61em;
  font-style: normal;
  font-weight: 380;
  letter-spacing: 0;
  -webkit-text-stroke: 1px rgba(238, 234, 225, 0.62);
}

.hero__bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  width: min(1050px, 100%);
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__bottom p {
  max-width: 540px;
  margin: 0;
  color: #b9bab6;
  font-size: 17px;
  line-height: 1.75;
  text-align: center;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 178px;
  height: 54px;
  padding: 0 20px;
  font-size: 13px;
  border: 1px solid var(--line-strong);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

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

.button--primary {
  color: #0b0c0d;
  border-color: var(--text);
  background: var(--text);
}

.button--primary:hover {
  background: #fffdf7;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero__rail {
  position: absolute;
  right: 48px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.hero__rail-line {
  width: 1px;
  height: 58px;
  background: rgba(255, 255, 255, 0.28);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  visibility: hidden;
  background: rgba(8, 9, 10, 0.98);
  opacity: 0;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 48px);
  height: 100%;
  margin: 0 auto;
  padding-top: 90px;
}

.mobile-menu__inner > a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  color: var(--text);
  font-size: 32px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__inner > a span {
  color: var(--muted-dark);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.mobile-menu__inner .mobile-menu__mail {
  justify-content: space-between;
  margin-top: 32px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.02em;
  border-bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.section-index {
  display: block;
  margin-bottom: 25px;
  color: var(--muted-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.section-heading h2 {
  max-width: 980px;
  margin: 0;
  font-family:
    "Arial Narrow", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: 68px;
  font-weight: 560;
  line-height: 1.07;
  letter-spacing: 0;
}

.section-heading > p {
  max-width: 520px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.profile {
  position: relative;
}

.profile__content {
  width: min(1280px, 100%);
  margin-left: auto;
}

.profile__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.profile__intro {
  max-width: 820px;
}

.profile__lead {
  margin: 0 0 28px;
  font-family:
    "Arial Narrow", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: 42px;
  font-weight: 470;
  line-height: 1.35;
  letter-spacing: 0;
}

.profile__copy {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

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

.metrics > div {
  min-width: 0;
  padding: 30px 24px 32px 0;
}

.metrics > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.metrics strong {
  display: block;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 520;
  letter-spacing: 0;
}

.metrics span {
  color: var(--muted-dark);
  font-size: 12px;
}

.contact-strip {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #c8c8c3;
  font-size: 13px;
}

.contact-strip a,
.contact-strip > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-strip a {
  transition: color 0.2s ease;
}

.contact-strip a:hover {
  color: var(--text);
}

.experience {
  display: grid;
  grid-template-columns: minmax(200px, 0.4fr) minmax(0, 1.6fr);
  gap: 80px;
  margin-top: 120px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.experience__label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.experience__list article {
  display: grid;
  grid-template-columns: 165px minmax(240px, 0.72fr) minmax(300px, 1.28fr);
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.experience__list article:first-child {
  padding-top: 0;
}

.experience__period {
  color: var(--muted-dark);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.experience__list h3 {
  margin: 0 0 7px;
  font-size: 19px;
  font-weight: 560;
}

.experience__list p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 12px;
}

.experience__note {
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.8;
}

.on-set {
  margin-bottom: 110px;
}

.on-set__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.on-set__heading span {
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.on-set__heading p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}

.on-set__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.on-set__grid figure {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.on-set__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition:
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.35s ease;
}

.on-set__grid figure:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.025);
}

.on-set__grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.stills,
.social-project {
  border-top: 1px solid var(--line);
}

.stills-projects {
  display: grid;
  gap: 104px;
}

.still-project + .still-project {
  padding-top: 8px;
}

.still-project__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.still-project__heading > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
  min-width: 0;
}

.still-project__heading > div > span {
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.still-project__heading h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 550;
  line-height: 1.1;
}

.still-project__heading p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 11px;
}

.still-project__heading > span {
  flex: 0 0 auto;
  color: var(--muted-dark);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.stills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}

.stills-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1181px) {
  .stills-grid--two {
    width: min(100%, calc(66.6667% - 6.6667px));
    margin-inline: auto;
  }
}

.still-card {
  min-width: 0;
  margin: 0;
}

.still-card__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.still-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 9, 10, 0.04), transparent 58%, rgba(8, 9, 10, 0.45));
}

.still-card__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.05);
  transition:
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.35s ease;
}

.still-card:hover .still-card__media img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.025);
}

.still-card__number {
  position: absolute;
  top: 13px;
  left: 14px;
  z-index: 2;
  padding: 5px 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.11em;
  background: rgba(8, 9, 10, 0.45);
  backdrop-filter: blur(8px);
}

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

.clip-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.clip-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d0f10;
}

.clip-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 9, 10, 0.18), transparent 52%, rgba(8, 9, 10, 0.62));
}

.clip-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.clip-card:hover .clip-card__media img {
  transform: scale(1.025);
}

.clip-card__media button,
.social-case__video button {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  color: #111415;
  border: 0;
  border-radius: 50%;
  background: rgba(238, 234, 225, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.clip-card__media button {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.clip-card__media button:hover,
.social-case__video button:hover {
  background: #fffdf7;
  transform: translate(-50%, -50%) scale(1.05);
}

.clip-card__media > span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.clip-card__media .clip-card__pending {
  top: 16px;
  right: auto;
  bottom: auto;
  left: 16px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(8, 9, 10, 0.52);
  backdrop-filter: blur(8px);
}

.clip-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0d0f10;
}

.clip-card__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px 28px;
}

.clip-card__caption span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted-dark);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.clip-card__caption h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 550;
}

.clip-card__caption > svg {
  color: var(--muted-dark);
}

.social-case {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.58fr) minmax(330px, 0.77fr);
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.social-case__video {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #0d0f10;
}

.social-case__video::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 9, 10, 0.12), transparent 48%, rgba(8, 9, 10, 0.72));
}

.social-case__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-case__video button {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.social-case__video > span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.social-case__phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 30px 22px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(118, 184, 188, 0.08), transparent 46%),
    #101314;
}

.social-case__phone img {
  width: 100%;
  max-width: 286px;
  max-height: 560px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.4);
}

.social-case__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 46px;
}

.social-case__label {
  display: block;
  margin-bottom: 24px;
  color: var(--muted-dark);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.social-case__content h3 {
  margin: 0 0 22px;
  font-size: 38px;
  font-weight: 550;
  line-height: 1.22;
}

.social-case__content > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.social-case__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 10px;
  min-height: 44px;
  margin-top: 28px;
  padding: 0 17px;
  color: var(--text);
  font-size: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.social-case__link:hover {
  color: #0b0c0d;
  border-color: var(--text);
  background: var(--text);
}

.social-case__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.social-case__metrics > div {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-case__metrics strong {
  display: block;
  margin-bottom: 7px;
  font-size: 28px;
  font-weight: 520;
}

.social-case__metrics span {
  color: var(--muted-dark);
  font-size: 10px;
}

.social-case__effect {
  position: relative;
  grid-column: 1 / -1;
  aspect-ratio: 2736 / 1260;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #0d0f10;
}

.social-case__effect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-case__effect figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.projects {
  padding-top: 170px;
  border-top: 1px solid var(--line);
}

.project-showcase {
  display: grid;
  gap: 34px;
}

.project-feature {
  --project-accent: var(--amber);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(340px, 0.68fr);
  min-height: 660px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.project-feature::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 2px;
  content: "";
  background: var(--project-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s ease;
}

.project-feature:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.project-feature--reverse {
  grid-template-columns: minmax(340px, 0.68fr) minmax(0, 1.52fr);
}

.project-feature--reverse .project-feature__media {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.project-feature--amber {
  --project-accent: var(--amber);
}

.project-feature--cyan {
  --project-accent: var(--cyan);
}

.project-feature--silver {
  --project-accent: var(--silver);
}

.project-feature--lime {
  --project-accent: var(--lime);
}

.project-feature--social {
  --project-accent: var(--cyan);
}

.project-feature__media {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.project-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 660px;
}

.project-gallery__stage {
  position: relative;
  flex: 1;
  min-height: 660px;
  overflow: hidden;
  background: #0d0f10;
}

.project-gallery__stage::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.38) 0%, transparent 26%, transparent 64%, rgba(8, 9, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 9, 10, 0.2), transparent 45%);
}

.project-gallery__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.018);
  transition:
    opacity 0.75s ease,
    transform 1.5s ease;
}

.project-gallery__stage img.is-active {
  opacity: 1;
  transform: scale(1);
}

.project-gallery__top {
  position: absolute;
  top: 25px;
  right: 26px;
  left: 26px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.project-gallery__counter {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.project-gallery__controls {
  position: absolute;
  bottom: 23px;
  left: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-gallery__controls > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(8, 9, 10, 0.46);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.project-gallery__controls > button:hover {
  color: #0b0c0d;
  border-color: var(--text);
  background: var(--text);
}

.project-gallery__progress {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 5px;
}

.project-gallery__progress button {
  width: 20px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.project-gallery__progress button.is-active {
  width: 38px;
  background: var(--project-accent);
}

.project-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 52px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.024), transparent 54%),
    var(--bg-soft);
}

.project-feature__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 65px;
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: 0.11em;
}

.project-feature__content h3 {
  margin: 0 0 26px;
  font-family:
    "Arial Narrow", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: 54px;
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: 0;
}

.project-feature__content > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.project-feature__result {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.project-feature__result span {
  color: var(--muted-dark);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.project-feature__result strong {
  color: #d8d7d1;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.project-card {
  position: relative;
  background: var(--bg-soft);
}

.project-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.project-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.08), transparent 48%, rgba(8, 9, 10, 0.52)),
    linear-gradient(90deg, rgba(8, 9, 10, 0.22), transparent 50%);
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.5s ease;
}

.project-card:hover .project-card__media img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.025);
}

.project-card__number,
.project-card__year {
  position: absolute;
  z-index: 2;
  top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.project-card__number {
  left: 24px;
}

.project-card__year {
  right: 24px;
}

.project-card__corner {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  width: 13px;
  height: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

.project-card__body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 40px;
  padding: 34px 36px 40px;
}

.project-card__role {
  display: block;
  margin-bottom: 11px;
  color: var(--muted-dark);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  font-family:
    "Arial Narrow", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: 38px;
  font-weight: 560;
  letter-spacing: 0;
}

.project-card__arrow {
  color: var(--muted-dark);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.project-card:hover .project-card__arrow {
  color: var(--text);
  transform: translate(3px, -3px);
}

.project-card__body > p {
  grid-column: 1 / 2;
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.project-card__body > strong {
  grid-column: 2 / 3;
  align-self: end;
  justify-self: end;
  color: #d7d7d1;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.project-card--amber {
  --project-accent: var(--amber);
}

.project-card--cyan {
  --project-accent: var(--cyan);
}

.project-card--silver {
  --project-accent: var(--silver);
}

.project-card--lime {
  --project-accent: var(--lime);
}

.project-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  width: 2px;
  content: "";
  background: var(--project-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s ease;
}

.project-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

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

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.strength-card {
  min-height: 410px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 18, 19, 0.72);
  transition: background 0.35s ease;
}

.strength-card:hover {
  background: #151819;
}

.strength-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  color: var(--muted-dark);
}

.strength-card__top > span {
  font-size: 10px;
  letter-spacing: 0.15em;
}

.strength-card h3 {
  margin: 0 0 20px;
  font-size: 23px;
  font-weight: 560;
  letter-spacing: 0;
}

.strength-card > p {
  max-width: 420px;
  min-height: 90px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.strength-card__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.strength-card__tools span {
  padding: 6px 9px;
  color: var(--muted-dark);
  font-size: 10px;
  border: 1px solid var(--line);
}

.contact {
  width: 100%;
  max-width: none;
  min-height: 100svh;
  padding: 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #0b0c0d;
  background-size: 80px 80px;
}

.contact__frame {
  display: flex;
  flex-direction: column;
  width: var(--page);
  min-height: 100svh;
  margin: 0 auto;
  padding: 56px 0 0;
}

.contact__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.contact__top .section-index {
  margin: 0;
}

.contact__availability {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.contact__main {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0;
}

.contact__main > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.contact__main h2 {
  max-width: 1200px;
  margin: 0;
  font-family:
    "Arial Narrow", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: 120px;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.contact__wechat {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: min(790px, 100%);
  margin-top: 66px;
  padding: 18px 0;
  color: #d2d1cb;
  border-bottom: 1px solid var(--line-strong);
}

.contact__wechat > span {
  color: var(--muted-dark);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.contact__wechat > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact__wechat strong {
  font-size: 22px;
  font-weight: 560;
  letter-spacing: 0.04em;
}

.contact-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-copy:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
}

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

.contact__item {
  padding: 25px 20px;
}

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

.contact__item:first-child {
  padding-left: 0;
}

.contact__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
}

.contact__item-head > span {
  color: var(--muted-dark);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.contact__item p,
.contact__item a {
  display: block;
  margin: 0;
  color: #c7c6c0;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 28px;
  color: var(--muted-dark);
  font-size: 9px;
  letter-spacing: 0.12em;
  border-top: 1px solid var(--line);
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

@keyframes fallback-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(8.333%);
  }
}

@media (max-width: 1500px) {
  :root {
    --page: min(1700px, calc(100% - 72px));
  }

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

  .hero__content {
    padding: 48px 0 100px;
  }

  .hero__bottom {
    gap: 44px;
    margin-top: 54px;
  }

  .section-heading h2 {
    font-size: 58px;
  }

  .profile__lead {
    font-size: 36px;
  }

  .contact__main h2 {
    font-size: 100px;
  }

  .section-shell {
    padding: 130px 0;
  }
}

@media (max-width: 1180px) {
  :root {
    --page: calc(100% - 52px);
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-contact {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .metrics > div:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metrics > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .experience__list article {
    grid-template-columns: 140px 1fr;
  }

  .experience__note {
    grid-column: 2;
  }

  .project-feature,
  .project-feature--reverse {
    grid-template-columns: 1fr;
  }

  .project-feature__media,
  .project-feature--reverse .project-feature__media {
    order: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .project-gallery,
  .project-gallery__stage {
    min-height: 540px;
  }

  .stills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-case {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-case__video {
    grid-column: 1 / -1;
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strength-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --page: calc(100% - 36px);
  }

  .site-header {
    width: calc(100% - 36px);
    height: 64px;
    margin-top: 14px;
    padding-left: 18px;
  }

  .brand__text,
  .brand__divider {
    display: none;
  }

  .hero__content {
    min-height: calc(100svh - 78px);
    padding: 44px 0 104px;
  }

  .hero__eyebrow {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    font-size: 74px;
    line-height: 0.92;
  }

  .hero h1 em {
    margin-top: 18px;
    font-size: 0.52em;
  }

  .hero__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    margin-top: 48px;
  }

  .hero__actions {
    width: 100%;
  }

  .button {
    min-width: 0;
    flex: 1;
  }

  .hero__rail {
    display: none;
  }

  .section-shell {
    padding: 96px 0;
  }

  .section-heading {
    margin-bottom: 46px;
    padding-bottom: 30px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .section-heading > p {
    font-size: 13px;
  }

  .profile__lead {
    font-size: 31px;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .experience {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 80px;
  }

  .experience__list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .experience__note {
    grid-column: 1;
  }

  .on-set__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .on-set__heading p {
    text-align: left;
  }

  .on-set__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stills-projects {
    gap: 76px;
  }

  .still-project__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .still-project__heading > div {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .still-project__heading h3 {
    font-size: 25px;
  }

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

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

  .social-case {
    grid-template-columns: 1fr;
  }

  .social-case__video {
    grid-column: auto;
    min-height: 390px;
  }

  .social-case__phone {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .social-case__content {
    padding: 42px 28px 46px;
  }

  .social-case__content h3 {
    font-size: 32px;
  }

  .social-case__effect {
    aspect-ratio: 16 / 10;
  }

  .project-gallery,
  .project-gallery__stage {
    min-height: 430px;
  }

  .project-feature__content {
    padding: 42px 28px 46px;
  }

  .project-feature__meta {
    margin-bottom: 42px;
  }

  .project-feature__content h3 {
    font-size: 42px;
  }

  .project-feature__result {
    margin-top: 48px;
  }

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

  .strength-card {
    min-height: 350px;
  }

  .strength-card__top {
    margin-bottom: 56px;
  }

  .contact__frame {
    padding-top: 38px;
  }

  .contact__main h2 {
    font-size: 64px;
  }

  .contact__wechat {
    margin-top: 46px;
  }

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

  .contact__item,
  .contact__item:first-child {
    padding: 22px 0;
  }

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

  .contact__wechat strong {
    font-size: 17px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 58px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    flex: none;
    width: 100%;
  }

  .metrics strong {
    font-size: 34px;
  }

  .project-gallery__controls {
    bottom: 18px;
    left: 18px;
  }

  .project-gallery__counter {
    right: 20px;
    bottom: 26px;
  }

  .project-gallery__progress button {
    width: 14px;
  }

  .project-gallery__progress button.is-active {
    width: 24px;
  }

  .contact__main h2 {
    font-size: 52px;
  }
}

@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;
  }
}
