@font-face {
  font-family: "OPPO Sans 4.0";
  src: url("https://cdn.jsdelivr.net/npm/@fontpkg/oppo-sans-4-0@1.700.0/OPPO%20Sans%204.0.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #020202;
  --bg-soft: #0a0a0a;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --line: rgba(255, 255, 255, 0.12);
  --red: #d60808;
  --red-deep: #5f0000;
  --orange: #ff8a19;
  --gold: #ffdd4f;
  --container-max: 1416px;
  --container-gutter: clamp(2rem, 26vw, 31.5rem);
  --container: min(var(--container-max), calc(100vw - var(--container-gutter)));
  --copy-width: 58ch;
  --serif-display: "OPPO Sans 4.0", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(5.6rem, 7.2vw, 8.8rem);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "OPPO Sans 4.0", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.site-container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 0;
  background: #030015;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
}

.site-brand {
  display: flex;
  align-items: center;
  width: min(11.8rem, 28vw);
}

.site-brand img {
  width: 100%;
}

.nav-toggle {
  display: none;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(1rem, 1.45vw, 1.75rem);
  align-items: center;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.86rem, 0.9vw, 1.02rem);
  font-weight: 400;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: 1;
}

.main-nav a,
.main-nav__lang {
  position: relative;
  letter-spacing: normal;
  word-spacing: normal;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 160ms ease;
}

.main-nav__lang {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  opacity: 0.88;
}

.main-nav__lang-button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: 1;
  cursor: pointer;
  opacity: 0.42;
  transition: opacity 180ms ease;
}

.main-nav__lang-button:hover,
.main-nav__lang-button:focus-visible,
.main-nav__lang-button.is-active {
  opacity: 1;
}

.main-nav__lang-button:focus-visible {
  outline: none;
}

.main-nav__lang-en {
  font-size: 0.95em;
  letter-spacing: normal;
  text-transform: uppercase;
}

.main-nav__lang-divider {
  opacity: 0.42;
}

.main-nav__lang-zh {
  font-size: 0.82em;
  letter-spacing: normal;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  height: max(50vw, min(1020px, 51.44vw));
  min-height: 0;
  overflow: hidden;
  background: #000;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  opacity: 0;
  filter: none;
  transform: none;
  transition:
    opacity 720ms cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 5600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hero__slide::before,
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero__slide::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.12) 100%);
}

.hero__slide::after {
  display: none;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1.035);
  animation: heroSlideScroll 8s ease-in-out infinite alternate;
}

.hero::after {
  display: none;
}

.hero__content {
  position: relative;
  padding: clamp(7rem, 10vw, 11rem) 0 clamp(4rem, 7vw, 7rem);
}

.hero__title {
  width: min(50rem, 62vw);
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.8rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: normal;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
  background: linear-gradient(90deg, var(--gold) 0%, var(--orange) 35%, #ff3400 80%, #ed0000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__dots {
  display: none;
}

.hero__dot {
  position: relative;
  width: 1.34rem;
  height: 0.24rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  overflow: hidden;
  transition:
    width 280ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.hero__dot:hover,
.hero__dot:focus-visible {
  background: rgba(255, 255, 255, 0.48);
  transform: translateY(-1px);
}

.hero__dot:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.92);
  outline-offset: 0.22rem;
}

.hero__dot.is-active {
  width: 5rem;
  background: rgba(255, 255, 255, 0.2);
}

.hero__dot-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, #f7d361 28%, #db1010 100%);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
}

.hero__dot.is-active .hero__dot-fill {
  opacity: 1;
  animation: heroProgress var(--hero-progress-duration, 5s) linear forwards;
}

.services {
  position: relative;
  padding: 0 0 clamp(2rem, 2.6vw, 3.1rem);
  background:
    radial-gradient(circle at 18% 88%, rgba(224, 0, 0, 0.34) 0%, rgba(224, 0, 0, 0) 30%),
    radial-gradient(circle at 82% 10%, rgba(255, 26, 26, 0.22) 0%, rgba(255, 26, 26, 0) 28%),
    linear-gradient(180deg, #f00505 0%, #d00202 8%, #9a0000 18%, #650000 34%, #250101 66%, #060101 86%, #020202 100%);
}

.services__layout {
  --services-gap: 10px;
  --services-panel-height: clamp(37rem, 38vw, 44rem);
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.56fr) minmax(0, 1fr);
  gap: var(--services-gap);
  align-items: stretch;
  padding-top: clamp(1.7rem, 2.15vw, 2.6rem);
}

.service-feature,
.service-tile {
  position: relative;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(214, 8, 8, 0.94);
}

.service-feature {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: var(--services-panel-height);
}

.service-feature__visual {
  position: relative;
  min-height: 0;
}

.service-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 320ms ease;
}

.service-feature__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 18%, rgba(22, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.38) 100%);
}

.service-feature__content {
  position: absolute;
  inset: clamp(1.8rem, 2.15vw, 2.6rem) clamp(1.5rem, 1.8vw, 2.1rem) auto;
  z-index: 1;
  display: block;
}

.service-feature__footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: clamp(6.4rem, 6.7vw, 8rem);
  padding: 1rem clamp(1.35rem, 1.65vw, 2rem) 1.1rem;
  background: #000;
  border-top: 1px solid rgba(214, 8, 8, 0.92);
}

.service-feature h2 {
  margin: 0;
  max-width: 6.4ch;
  font-size: clamp(3.6rem, 4.35vw, 5.2rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: normal;
  text-transform: uppercase;
  text-wrap: balance;
}

.service-feature p {
  width: min(43rem, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.14vw, 1.34rem);
  font-weight: 400;
  line-height: 1.36;
  text-wrap: normal;
}

.service-feature__action {
  display: none;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  font-size: 0.86rem;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.service-feature:hover img,
.service-feature:focus-visible img {
  transform: scale(1.02);
}

.service-feature:hover .service-feature__action,
.service-feature:focus-visible .service-feature__action {
  transform: translate(0.15rem, -0.15rem);
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
}

.service-feature.is-changing img {
  opacity: 0.78;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: var(--services-gap);
  height: var(--services-panel-height);
}

.service-tile {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-tile img {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.12) 62%, rgba(0, 0, 0, 0.42) 100%);
}

.service-tile span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(2.65rem, 2.9vw, 3.45rem);
  padding: 0.58rem 0.65rem 0.62rem;
  background: #000;
  border-top: 1px solid rgba(214, 8, 8, 0.92);
  font-size: clamp(0.84rem, 0.88vw, 1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
}

.service-tile:hover,
.service-tile:focus-visible,
.service-tile.is-active {
  transform: translateY(-0.12rem);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.service-tile:hover img,
.service-tile:focus-visible img,
.service-tile.is-active img {
  transform: scale(1.03);
  filter: saturate(1.02);
}

html[lang="zh-CN"] .service-feature h2 {
  width: 3em;
  max-width: 3em;
  font-size: clamp(3.7rem, 4.6vw, 5.35rem);
  line-height: 0.96;
  word-break: keep-all;
}

html[lang="zh-CN"] .service-feature p {
  width: min(46rem, 100%);
  font-size: clamp(1.18rem, 1.28vw, 1.5rem);
  line-height: 1.5;
}

html[lang="zh-CN"] .service-tile span {
  font-size: clamp(1rem, 1.08vw, 1.25rem);
}

.case-card {
  position: relative;
  overflow: hidden;
  background: #090909;
}

.cases {
  padding: 3rem 0 0;
  background: #010101;
}

.page-home .cases {
  padding-top: clamp(2.35rem, 3.1vw, 3.8rem);
}

.section-heading {
  width: min(100%, 1100px);
}

.section-heading h2,
.partners h2 {
  margin: 0;
  font-size: clamp(2.1rem, 2.6vw, 3.1rem);
  font-weight: 300;
  letter-spacing: normal;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  margin-top: 0.85rem;
  margin-bottom: 1.08rem;
}

.case-filter {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  min-width: 5.2rem;
  padding: 0.3rem 0.78rem 0.34rem;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.case-filter:hover,
.case-filter:focus-visible,
.case-filter.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
}

.case-filter:hover,
.case-filter:focus-visible {
  transform: translateY(-1px);
}

.case-filter:focus-visible {
  outline: none;
}

.case-card {
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  border-top: 0;
}

.page-home .case-card + .case-card {
  margin-top: 4px;
}

.case-card img {
  width: 100%;
  height: clamp(23rem, 26vw, 32rem);
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.case-card:nth-of-type(1) img {
  object-position: center 28%;
}

.case-card:nth-of-type(2) img {
  object-position: center 62%;
}

.case-card:nth-of-type(3) img {
  object-position: center 34%;
}

.case-card p {
  position: absolute;
  right: 1.65rem;
  bottom: 1.05rem;
  z-index: 1;
  margin: 0;
  text-align: right;
  font-size: clamp(0.98rem, 1.04vw, 1.24rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.case-card:hover img,
.case-card:focus-within img {
  transform: scale(1.02);
  filter: saturate(1.02);
}

.partners {
  padding: clamp(3.4rem, 4.6vw, 5.6rem) 0 clamp(3.8rem, 5vw, 6.1rem);
  background: #010101;
}

.partners__content {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  text-align: left;
}

.partners__wall {
  width: min(1580px, 88%);
  margin: clamp(2rem, 2.9vw, 3.4rem) auto 0;
  object-fit: contain;
}

.journey {
  position: relative;
  overflow: hidden;
  background: #0a0000;
}

.journey__link {
  position: relative;
  display: block;
  height: min(18rem, 15.5vw);
}

.journey img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease, filter 320ms ease;
}

.journey__link:hover img,
.journey__link:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.02);
}

.journey__title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: var(--container);
  gap: 0.08em;
  color: #fff;
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.journey__title-line {
  display: block;
  width: max-content;
  font-size: clamp(44px, 4.65vw, 78px);
}

html[lang="zh-CN"] .journey__title {
  gap: 0.26rem;
  line-height: 1.08;
}

html[lang="zh-CN"] .journey__title-line {
  font-size: clamp(34px, 3.7vw, 58px);
}

.site-footer {
  background: #020202;
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__top {
  min-height: 3.5rem;
  padding: 0.95rem 0 0.8rem;
  font-size: 1.08rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-footer__bottom {
  padding: 0.92rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
}

.footer-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav {
  align-items: center;
  gap: 1.95rem;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  word-spacing: normal;
}

.site-footer p {
  margin: 0;
}

.page-about {
  background: #000;
  --about-container: var(--container);
  --about-red: #d60808;
  --about-line: rgba(255, 255, 255, 0.86);
}

.page-about .site-header {
  padding-top: clamp(0.95rem, 1.28vw, 1.55rem);
  padding-bottom: clamp(0.82rem, 1.06vw, 1.25rem);
  background: #030015;
  backdrop-filter: none;
}

.page-about .site-header__inner,
.page-about .site-footer .site-container {
  width: var(--about-container);
}

.page-about .site-brand {
  width: min(11.8rem, 28vw);
}

.page-about .main-nav {
  gap: clamp(1rem, 1.48vw, 1.8rem);
  font-size: clamp(0.9rem, 0.96vw, 1.08rem);
}

.about-hero {
  position: relative;
  height: min(clamp(28rem, 42vw, 48rem), calc(100svh - 7.5rem));
  min-height: 0;
  overflow: hidden;
  background: #080105;
}

.about-hero__media,
.about-hero__grid,
.about-hero__monogram {
  position: absolute;
  inset: 0;
}

.about-hero__media {
  background:
    linear-gradient(180deg, rgba(4, 1, 10, 0.02) 0%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.18) 100%),
    url("./assets/media/about-bg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  filter: saturate(1.02) contrast(1.01);
}

.about-hero__grid {
  display: none;
}

.about-hero__monogram {
  display: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
}

.about-section {
  padding: clamp(4.4rem, 5.8vw, 7rem) 0 0;
  background: #000;
}

.about-section__inner,
.about-journey__inner {
  display: grid;
  grid-template-columns: clamp(7rem, 8.8vw, 10.5rem) minmax(0, 1fr);
  column-gap: clamp(1.85rem, 2.3vw, 2.7rem);
  align-items: start;
  width: var(--about-container);
}

.about-section__eyebrow {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  display: block;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(1.6rem, 1.9vw, 2.25rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.018em;
  word-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  white-space: pre-line;
}

.about-section__rule {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: clamp(5.2rem, 6.5vw, 7.8rem);
  border-top: 1px solid var(--about-line);
}

.about-section__content {
  grid-column: 2;
  grid-row: 1;
  padding-top: clamp(5.8rem, 7.3vw, 8.8rem);
}

.about-section__title {
  width: auto;
  max-width: 13.8em;
  margin: 0;
  font-family: var(--serif-display);
  color: var(--about-red);
  font-size: clamp(2.75rem, 3.08vw, 3.65rem);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.045em;
  text-wrap: pretty;
}

.about-section__copy {
  width: auto;
  max-width: 56rem;
  margin: clamp(1.45rem, 1.85vw, 2.2rem) 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.92rem, 1vw, 1.12rem);
  line-height: 1.52;
  letter-spacing: -0.018em;
  text-wrap: auto;
}

.about-section--intro {
  padding-top: clamp(4.8rem, 6vw, 7.2rem);
}

.about-section--vision {
  padding-top: clamp(4.5rem, 5.8vw, 7rem);
}

.about-vision__quote {
  position: relative;
  width: auto;
  max-width: 62rem;
  margin: 0;
  padding-left: 0;
}

.about-vision__quote::before {
  display: none;
}

.about-vision__quote p {
  margin: 0;
  font-family: var(--serif-display);
  color: var(--about-red);
  font-size: clamp(2.25rem, 2.55vw, 3rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.045em;
  text-wrap: pretty;
}

html[lang="zh-CN"] .about-vision__quote {
  max-width: 76rem;
}

html[lang="zh-CN"] .about-section__eyebrow {
  font-size: clamp(1.42rem, 1.72vw, 2rem);
  letter-spacing: -0.08em;
  word-spacing: normal;
}

html[lang="zh-CN"] .about-section--intro .about-section__title {
  max-width: 14em;
  white-space: normal;
}

html[lang="zh-CN"] .about-vision__quote p {
  font-size: clamp(2.05rem, 2.45vw, 2.9rem);
  line-height: 1.18;
  white-space: pre-line;
  text-wrap: auto;
}

.about-vision__copy {
  margin-top: clamp(1.55rem, 2vw, 2.4rem);
}

.about-journey {
  padding: clamp(4.5rem, 5.8vw, 7rem) 0 clamp(4.8rem, 6.6vw, 8rem);
  background: #000;
}

.about-journey__eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.about-journey__content {
  grid-column: 2;
  grid-row: 1;
  padding-top: clamp(5.8rem, 7vw, 8.4rem);
}

.about-journey__columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: auto;
  max-width: 58rem;
  gap: 0.7rem;
  margin: 0;
}

.about-journey__columns p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.92rem, 1vw, 1.12rem);
  line-height: 1.52;
  letter-spacing: -0.018em;
  text-wrap: auto;
}

.about-journey__accordion {
  grid-column: 1 / -1;
  margin-top: clamp(3.8rem, 5vw, 6rem);
  border-top: 0;
}

.journey-accordion__item {
  border-bottom: 1px solid var(--about-line);
}

.journey-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.85rem, 1.45vw, 1.7rem);
  width: 100%;
  min-height: clamp(5.8rem, 6.7vw, 7.8rem);
  padding: clamp(1.15rem, 1.5vw, 1.8rem) 0 clamp(1.05rem, 1.35vw, 1.6rem);
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding-left 180ms ease;
}

.journey-accordion__trigger:hover,
.journey-accordion__trigger:focus-visible,
.journey-accordion__item.is-open .journey-accordion__trigger {
  padding-left: 0.8rem;
  color: #fff;
}

.journey-accordion__trigger:focus-visible {
  outline: none;
}

.journey-accordion__title {
  order: 1;
  min-width: 0;
  font-size: clamp(1.55rem, 1.95vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  word-spacing: 0.08em;
}

.journey-accordion__trigger::after {
  content: "MORE";
  order: 2;
  margin-left: auto;
  margin-right: clamp(0.7rem, 1.1vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.7rem, 0.82vw, 0.94rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.journey-accordion__icon {
  position: relative;
  order: 3;
  width: clamp(3rem, 3.6vw, 4rem);
  height: clamp(2.4rem, 2.85vw, 3.2rem);
  margin-right: 0.15rem;
  border: 0;
  color: rgba(255, 255, 255, 0.94);
  transform: none;
  flex: 0 0 auto;
  transition: transform 220ms ease, color 180ms ease;
}

.journey-accordion__icon::before,
.journey-accordion__icon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.journey-accordion__icon::before {
  width: 102%;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: right bottom;
}

.journey-accordion__icon::after {
  width: 86%;
  height: 86%;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.journey-accordion__item.is-open .journey-accordion__icon {
  color: #fff;
  transform: translate(0.18rem, 0.18rem);
}

.journey-accordion__panel {
  margin: 0 0 clamp(1rem, 1.45vw, 1.7rem);
  padding: clamp(0.95rem, 1.2vw, 1.4rem) clamp(1.05rem, 1.45vw, 1.7rem);
  background: #080808;
  border-left: 3px solid var(--about-red);
}

.journey-accordion__intro {
  margin: 0 0 0.95rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.9rem, 0.95vw, 1.05rem);
  line-height: 1.45;
}

.journey-accordion__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-accordion__entry {
  display: grid;
  grid-template-columns: minmax(5.3rem, 7rem) minmax(0, 1fr);
  gap: clamp(1rem, 1.6vw, 1.8rem);
  align-items: start;
  padding: 0.85rem 0;
}

.journey-accordion__entry + .journey-accordion__entry {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.journey-accordion__year {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.78rem, 0.8vw, 0.95rem);
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.journey-accordion__event {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.84rem, 0.88vw, 0.98rem);
  line-height: 1.45;
}

.about-outro {
  padding: 0;
  background: #000;
}

.about-outro__inner {
  display: grid;
  grid-template-columns: minmax(18rem, 33.2%) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  min-height: clamp(12rem, 12.5vw, 15rem);
}

.about-outro__media {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 0;
  overflow: hidden;
  background: #050505;
  align-self: stretch;
}

.about-outro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.05);
  filter: grayscale(1) contrast(1.08);
}

.about-outro__quote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.22em;
  margin: 0;
  min-height: 0;
  padding: clamp(1.4rem, 2.25vw, 2.7rem) clamp(1.6rem, 3.4vw, 4rem);
  background: var(--about-red);
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--serif-display);
  font-size: clamp(1.05rem, 1.24vw, 1.45rem);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.035em;
}

.about-outro__quote-line {
  display: block;
  width: 100%;
}

.about-outro__quote-line:empty {
  display: none;
}

.page-about .site-footer__top {
  min-height: clamp(3.1rem, 3.5vw, 4.1rem);
  padding-top: 1.05rem;
  padding-bottom: 1rem;
}

.page-about .footer-nav {
  gap: clamp(1rem, 1.45vw, 1.75rem);
  font-size: clamp(0.88rem, 0.98vw, 1.12rem);
}

.page-about .site-footer__bottom {
  padding-top: 1.05rem;
  font-size: clamp(0.74rem, 0.82vw, 0.92rem);
}

.page-cases,
.page-case-detail,
.page-services,
.page-contact {
  background: #000;
}

.page-cases .site-header,
.page-case-detail .site-header,
.page-services .site-header,
.page-contact .site-header {
  background: #030015;
  backdrop-filter: none;
}

.page-contact .site-header {
  position: sticky;
  top: 0;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0.14rem 0.56rem 0.18rem;
  background: #d60808;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cases-hero,
.case-detail-hero,
.services-page-hero,
.contact-hero {
  position: relative;
  overflow: hidden;
}

.cases-hero {
  padding: clamp(3.2rem, 3.8vw, 4.6rem) 0 clamp(1.8rem, 2.3vw, 2.8rem);
  background: transparent;
}

.cases-hero__inner {
  width: var(--container);
}

.case-detail-hero__copy h1,
.services-page-hero__content h1,
.contact-hero__inner h1 {
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: normal;
}

.case-detail-hero__intro,
.services-page-hero__content p,
.contact-hero__inner p {
  width: min(42rem, 100%);
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.case-filters--cases-page {
  margin-top: 0;
  margin-bottom: 0;
  justify-content: flex-start;
  gap: clamp(0.65rem, 0.9vw, 1.1rem);
}

.page-cases .case-filter {
  min-width: clamp(5.8rem, 6.2vw, 7.4rem);
  padding: 0.32rem 0.85rem 0.36rem;
  font-size: clamp(0.78rem, 0.82vw, 0.96rem);
  letter-spacing: normal;
}

.cases-gallery-section {
  padding: 0 0 clamp(3.8rem, 5.2vw, 6.2rem);
}

.cases-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3.6rem, 4.2vw, 5rem) clamp(2.4rem, 3vw, 3.6rem);
}

.case-showcase,
.case-showcase--primary,
.case-showcase--portrait,
.case-showcase--wide,
.cases-gallery > .case-showcase:nth-child(5),
.cases-gallery > .case-showcase:nth-child(6) {
  position: relative;
  overflow: visible;
  grid-column: span 1;
  height: auto;
  background: transparent;
}

.case-showcase__link {
  display: flex;
  flex-direction: column;
  height: auto;
}

.case-showcase__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border: 0;
  filter: none;
  transition: transform 280ms ease, filter 280ms ease;
}

.case-showcase--primary .case-showcase__image {
  object-position: center 34%;
}

.case-showcase--portrait:nth-child(2) .case-showcase__image {
  object-position: center 38%;
}

.case-showcase--portrait:nth-child(3) .case-showcase__image {
  object-position: center 26%;
}

.case-showcase--wide .case-showcase__image {
  object-position: center 40%;
}

.cases-gallery > .case-showcase:nth-child(5) .case-showcase__image {
  object-position: center 44%;
}

.cases-gallery > .case-showcase:nth-child(6) .case-showcase__image {
  object-position: center 24%;
}

.case-showcase__overlay {
  position: static;
  inset: auto;
  display: block;
  padding: 0.72rem 0 0;
  background: none;
}

.case-showcase__tag {
  display: none;
}

.case-showcase h2 {
  width: auto;
  max-width: none;
  margin: 0;
  font-size: clamp(0.88rem, 0.95vw, 1.12rem);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: normal;
  text-wrap: pretty;
}

.case-showcase__arrow {
  display: none;
}

.cases-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(980px, 100%);
  margin: 0 auto;
  padding-top: clamp(2.4rem, 3.2vw, 3.8rem);
  gap: 1rem;
  color: rgba(200, 209, 221, 0.9);
}

.cases-pagination__control {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: clamp(0.84rem, 0.9vw, 1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.cases-pagination__control:focus-visible {
  outline: none;
}

.cases-pagination__control--prev {
  margin-left: 0;
}

.cases-pagination__control--prev:disabled {
  display: none;
}

.cases-pagination__control--next {
  margin-left: 0;
}

.cases-pagination__control--next:disabled {
  opacity: 0.68;
  cursor: default;
  pointer-events: none;
}

.cases-pagination__status {
  color: inherit;
  font-size: clamp(0.84rem, 0.9vw, 1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.case-showcase:hover .case-showcase__image,
.case-showcase__link:hover .case-showcase__image,
.case-showcase__link:focus-visible .case-showcase__image {
  transform: scale(1.03);
  filter: saturate(1) brightness(1);
}

.case-detail-hero {
  padding: 1.25rem 0 1.5rem;
  background: #020202;
}

.case-filters--detail-page {
  margin-top: 0;
  margin-bottom: 1rem;
}

.page-case-detail main {
  font-family: var(--serif-display);
}

.page-case-detail .case-filter {
  font-family: var(--serif-display);
}

.case-detail-stage__title {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.case-detail-stage__title h1 {
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(1.35rem, 1.72vw, 2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: normal;
  text-wrap: pretty;
}

.case-detail-stage__panel {
  margin-top: 0.72rem;
  padding: 3.5% 4% 4.8%;
  background: #262626;
  overflow: hidden;
}

.case-detail-stage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

.case-detail-stage__copy {
  width: min(46rem, 100%);
  max-width: 100%;
}

.case-detail-stage__metric {
  margin: 0 0 0.9rem;
  color: #d60829;
  font-size: clamp(4.2rem, 5.8vw, 5.6rem);
  font-weight: 300;
  line-height: 0.84;
  letter-spacing: normal;
}

.case-detail-note + .case-detail-note {
  margin-top: 0.85rem;
}

.case-detail-note h2 {
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: normal;
  text-wrap: pretty;
}

.case-detail-note p {
  max-width: none;
  margin: 0.42rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.52;
}

.case-detail-stage__visual {
  margin: 0;
  overflow: hidden;
  background: #111;
}

.case-detail-stage__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-detail-stage__visual--hero {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.case-detail-stage__visual--hero img {
  object-position: center 34%;
}

.case-detail-timeline-panel {
  width: min(48rem, 100%);
  max-width: 100%;
}

.case-detail-timeline-panel__title {
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(1.5rem, 1.9vw, 2.2rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: normal;
  text-wrap: pretty;
}

.case-detail-timeline-panel__title span {
  display: block;
}

.case-detail-timeline-panel__title span + span {
  margin-top: 0.18rem;
}

.case-detail-timeline-panel__list {
  display: grid;
  gap: 0.48rem;
  margin-top: 1rem;
}

.case-detail-arrow {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.22rem 1.4rem 0.24rem 0.78rem;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.15;
  clip-path: polygon(0 0, calc(100% - 1.22rem) 0, 100% 50%, calc(100% - 1.22rem) 100%, 0 100%);
}

.case-detail-arrow--1 {
  width: 78%;
  background: #8c0006;
}

.case-detail-arrow--2 {
  width: 87%;
  background: #aa0036;
}

.case-detail-arrow--3 {
  width: 95%;
  background: #c60038;
}

.case-detail-arrow--4 {
  width: 104%;
  background: #e7004d;
}

.case-detail-timeline-panel__summary {
  max-width: none;
  margin: 0.92rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.52;
}

.case-detail-stage__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 30px);
  align-items: start;
  width: 100%;
}

.case-detail-stage__visual--gallery {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.case-detail-stage__visual--gallery img {
  transform: scale(1.035);
  transform-origin: center;
}

.case-detail-stage__visual--gallery-left img {
  object-position: center;
}

.case-detail-stage__visual--gallery-right img {
  object-position: center 40%;
}

.page-services {
  background: #000;
}

.page-services .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.services-page-shell {
  width: var(--container);
  margin: 0 auto;
}

.services-page-hero {
  padding: clamp(2rem, 2.45vw, 3rem) 0 0;
  background: #000;
}

.services-page-hero__image {
  margin: 0;
  overflow: hidden;
  background: #080808;
}

.services-page-hero__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 2690 / 1402;
  object-fit: cover;
  object-position: center;
}

.services-page-intro {
  width: min(72rem, 100%);
  padding: clamp(3rem, 3.8vw, 4.6rem) 0 clamp(3.6rem, 4.7vw, 5.6rem);
}

.services-page-intro p,
.services-page-outro__text {
  margin: 0;
  color: #fff;
  font-family: "OPPO Sans 4.0", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  letter-spacing: normal;
  text-wrap: pretty;
}

.services-page-intro p {
  width: 100%;
  max-width: 72rem;
  font-size: clamp(1.85rem, 2.3vw, 2.72rem);
  font-weight: 400;
  line-height: 1.18;
  text-wrap: pretty;
}

.services-page-intro__line {
  display: block;
}

.services-page-intro__line + .services-page-intro__line {
  margin-top: 0.03em;
}

.services-page-sections {
  padding: 0 0 clamp(4rem, 5.4vw, 6.6rem);
  background: #000;
}

.service-panel {
  padding: 0;
}

.service-panel + .service-panel {
  margin-top: clamp(1.25rem, 2vw, 2.4rem);
}

.service-panel__header {
  display: grid;
  gap: 0.8rem;
}

.service-panel__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: clamp(1.8rem, 2.05vw, 2.45rem);
  padding: 0.16rem 0.42rem 0.2rem;
  background: #d60808;
  color: #fff;
  font-size: clamp(0.95rem, 1.12vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.service-panel__rule {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.service-panel__body {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1fr);
  gap: clamp(3rem, 4vw, 4.8rem);
  align-items: start;
  padding-top: clamp(1.15rem, 1.55vw, 1.85rem);
}

.service-panel__copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-panel__copy h2 {
  width: auto;
  max-width: 15ch;
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(2.05rem, 2.28vw, 2.7rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: normal;
  text-wrap: pretty;
}

.service-panel__copy p,
.service-panel__link {
  width: auto;
  max-width: 34rem;
  margin: clamp(0.95rem, 1.2vw, 1.45rem) 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.92rem, 0.98vw, 1.08rem);
  line-height: 1.58;
}

.service-panel__slots {
  display: grid;
  gap: clamp(0.65rem, 0.78vw, 0.92rem);
  margin: auto 0 0;
  padding: clamp(2.6rem, 3.4vw, 4.1rem) 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.86rem, 0.9vw, 1rem);
  line-height: 1;
}

.service-panel__slots li {
  margin: 0;
}

.service-panel__media {
  margin: 0;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1.43 / 1;
  background: #090909;
}

.service-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}

.service-panel__media img[src*="g3.jpg"] {
  object-position: center 46%;
}

.service-panel__media img[src*="g4.jpg"] {
  object-position: center 42%;
}

.service-panel__media img[src*="1.png"] {
  object-position: center;
}

.service-panel__media img[src*="services-advisory-grow.jpg"] {
  object-position: center 58%;
}

.service-panel__media img[src*="services-talent-locker-room.jpeg"] {
  object-position: center 24%;
}

.service-panel__media img[src*="services-design-neon-ball.jpg"] {
  object-position: center;
}

.service-panel#design .service-panel__slots {
  margin: clamp(1.7rem, 2.6vw, 3.1rem) 0 0;
  padding-top: 0;
}

.service-panel#design .service-panel__link {
  margin-top: clamp(1.4rem, 2vw, 2.4rem);
}

.service-panel__link {
  color: #f3d76b;
}

.service-panel__link a {
  color: inherit;
}

.services-page-outro {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.1) 34%, rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(180deg, rgba(6, 1, 1, 0.04) 0%, rgba(6, 1, 1, 0.24) 100%),
    url("./assets/media/services-outro-hex.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.services-page-outro__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: clamp(21rem, 23vw, 27rem);
  background: transparent;
}

.services-page-outro__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(32rem, 40%);
  margin-left: auto;
  padding: clamp(2.2rem, 2.8vw, 3.2rem) 0;
  background: transparent;
}

.services-page-outro__text {
  width: 100%;
  margin: 0;
  font-size: clamp(1.35rem, 1.58vw, 1.9rem);
  font-weight: 400;
  line-height: 1.22;
  text-align: left;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

.services-page-outro__line {
  display: block;
  color: rgba(255, 255, 255, 0.96);
}

.contact-hero {
  padding: 8.4rem 0 2.4rem;
  background:
    linear-gradient(180deg, rgba(2, 2, 2, 0.46) 0%, rgba(2, 2, 2, 0.92) 100%),
    radial-gradient(circle at 0 0, rgba(214, 8, 8, 0.34) 0%, rgba(214, 8, 8, 0) 34%),
    url("./assets/media/contact-hero-bg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-hero__inner {
  width: min(44rem, 100%);
}

.contact-stage__panel {
  padding: 1.2rem 1.2rem 1.32rem;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.62) 0%, rgba(8, 8, 8, 0.84) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.contact-channels__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.contact-card,
.office-card {
  display: flex;
  flex-direction: column;
  gap: 0.92rem;
  justify-content: space-between;
  min-height: 9.8rem;
  padding: 1.2rem 1.2rem 1.28rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card {
  background:
    linear-gradient(135deg, rgba(214, 8, 8, 0.18) 0%, rgba(214, 8, 8, 0.02) 28%, rgba(17, 17, 17, 0.98) 28%, rgba(17, 17, 17, 0.98) 100%);
}

.contact-card:last-child {
  grid-column: span 2;
}

.contact-card__label,
.office-card__label {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a {
  width: fit-content;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.12;
  letter-spacing: normal;
}

.office-section {
  padding: 0 0 3rem;
}

.office-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.office-card {
  background: #0d0d0d;
}

.office-card p {
  width: min(28rem, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.46;
}

.page-contact {
  background: #000;
}

.contact-page-banner {
  padding-top: 0;
  background: #000;
}

.contact-page-banner__image {
  margin: 0;
  overflow: hidden;
  background: #080808;
}

.contact-page-banner__image img {
  width: 100%;
  height: clamp(25rem, 30vw, 36rem);
  object-fit: cover;
  object-position: center 38%;
}

.contact-page-content {
  padding: clamp(3.4rem, 4.3vw, 5.2rem) 0 clamp(4rem, 5.2vw, 6.4rem);
  background: #000;
}

.contact-page-shell {
  width: var(--container);
  margin: 0 auto;
}

.contact-page-content,
.contact-line[id] {
  scroll-margin-top: 1.5rem;
}

.contact-page-heading {
  display: block;
}

.contact-page-title {
  margin: 0;
  color: #d60808;
  font-family: "OPPO Sans 4.0", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: clamp(5rem, 6vw, 7.2rem);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: normal;
  text-transform: uppercase;
  text-wrap: pretty;
  white-space: nowrap;
}

.contact-page-intro {
  margin: 0;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.95rem, 0.98vw, 1.08rem);
  line-height: 1.6;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(4rem, 5.4vw, 6.5rem);
  row-gap: clamp(2.2rem, 2.8vw, 3.4rem);
  width: min(1080px, 100%);
  margin-top: clamp(2.2rem, 2.8vw, 3.4rem);
}

.contact-line {
  min-height: 0;
  padding-top: 0;
  border-top: 0;
}

.contact-line:last-child {
  grid-column: 1 / span 2;
  max-width: 33rem;
}

.contact-line h2,
.contact-office h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.3rem, 1.42vw, 1.7rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-wrap: pretty;
}

.contact-line a {
  display: inline-block;
  margin-top: 0.72rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1vw, 1.12rem);
  line-height: 1.42;
}

.contact-page-divider {
  width: min(1080px, 100%);
  margin-top: clamp(2.8rem, 3.4vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.contact-office-list {
  display: grid;
  gap: clamp(2.1rem, 2.8vw, 3.4rem);
  width: min(1080px, 100%);
  padding-top: clamp(2.2rem, 2.9vw, 3.5rem);
}

.contact-office h2 {
  font-size: clamp(1.45rem, 1.58vw, 1.88rem);
}

.contact-office p {
  max-width: 80rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.95rem, 1vw, 1.12rem);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .hero {
    height: clamp(26rem, 54vw, 34rem);
    min-height: 0;
  }

  .hero__slide {
    background-size: cover;
  }

  .services__layout {
    width: var(--container);
    grid-template-columns: 1fr;
  }

  .service-feature {
    height: auto;
    aspect-ratio: 1.25 / 1;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
    min-height: 0;
  }

  .case-card img {
    height: 27rem;
  }

  .case-card {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(calc(100vw - 1.5rem), 100%);
  }

  .site-header {
    padding: 0;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-brand {
    width: 8.25rem;
  }

  .main-nav {
    gap: 0.65rem;
    font-size: 0.76rem;
  }

  .hero {
    height: clamp(13.5rem, 62vw, 24rem);
    min-height: 0;
  }

  .hero__content {
    padding-top: 8rem;
  }

  .hero__title {
    width: min(23rem, 100%);
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero__dots {
    bottom: 1.2rem;
  }

  .services {
    padding: 0;
  }

  .services__layout {
    padding-top: 0;
  }

  .service-feature {
    aspect-ratio: 1 / 1;
  }

  .service-feature__content {
    inset: 10% 1rem 1rem;
  }

  .service-feature__body {
    padding-top: 0.16rem;
  }

  .service-feature h2 {
    font-size: clamp(3.25rem, 7.8vw, 5.55rem);
  }

  html[lang="zh-CN"] .service-feature h2 {
    width: auto;
    max-width: 100%;
    font-size: clamp(2.8rem, 8vw, 4.2rem);
    line-height: 1.08;
    word-break: keep-all;
  }

  .service-feature p {
    width: 70%;
    max-width: none;
    font-size: clamp(1.3rem, 2.6vw, 1.65rem);
    line-height: 1.14;
    text-wrap: normal;
  }

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

  .service-tile {
    aspect-ratio: 1 / 1;
  }

  .service-tile span {
    top: calc(10% + 0.42rem);
    left: 0.72rem;
    font-size: clamp(0.82rem, 2.15vw, 1.14rem);
    line-height: 1;
    letter-spacing: normal;
  }

  .cases {
    padding-top: 2rem;
  }

  .section-heading {
    width: 100%;
  }

  .case-filters {
    gap: 0.34rem;
  }

  .case-filter {
    padding: 0.22rem 0.48rem;
    font-size: 0.62rem;
    border-radius: 999px;
  }

  .case-filters {
    margin-bottom: 0.72rem;
  }

  .case-card img {
    height: 18rem;
  }

  .case-card p {
    right: 1rem;
    bottom: 0.7rem;
    font-size: 1rem;
  }

  .partners {
    padding-top: 2.2rem;
  }

  .partners__wall {
    margin-top: 1.4rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__top {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 1100px) {
  .page-about {
    --about-container: var(--container);
  }

  .about-hero {
    height: clamp(29rem, 52.16vw, 40rem);
    min-height: 0;
  }

  .about-section__inner,
  .about-journey__inner {
    grid-template-columns: clamp(7rem, 13vw, 9.5rem) minmax(0, 1fr);
    column-gap: 2rem;
  }

  .about-section__content,
  .about-journey__content {
    padding-top: clamp(5.6rem, 9vw, 7rem);
  }

  .about-section__rule {
    margin-top: clamp(5.2rem, 8vw, 7rem);
  }

  .about-journey__columns {
    grid-template-columns: 1fr;
  }

  .about-outro__inner {
    grid-template-columns: minmax(15rem, 35%) minmax(0, 1fr);
  }

  .about-outro__media {
    min-height: 0;
    aspect-ratio: auto;
  }

  .about-outro__quote {
    min-height: auto;
  }

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

  .case-showcase,
  .case-showcase--primary,
  .case-showcase--portrait,
  .case-showcase--wide,
  .cases-gallery > .case-showcase:nth-child(5),
  .cases-gallery > .case-showcase:nth-child(6) {
    grid-column: span 1;
    height: auto;
  }

  .case-detail-stage__grid,
  .services-page-hero__inner,
  .service-story__inner,
  .contact-channels__grid,
  .office-section__grid {
    grid-template-columns: 1fr;
  }

  .case-detail-stage__grid {
    gap: 1.7rem;
  }

  .contact-card:last-child {
    grid-column: span 1;
  }

  .case-detail-stage__visual--hero,
  .case-detail-timeline-panel {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .case-detail-stage__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 30px);
  }

  .case-detail-stage__visual--gallery {
    width: 100%;
  }

  .case-detail-arrow--1,
  .case-detail-arrow--2,
  .case-detail-arrow--3,
  .case-detail-arrow--4 {
    width: 100%;
  }

  .services-page-hero__visual-stack {
    width: min(15rem, calc(100% - 1.4rem));
    right: 0.7rem;
    bottom: 0.7rem;
  }
}

@media (max-width: 780px) {
  .page-about {
    --about-container: var(--container);
  }

  .about-hero {
    height: clamp(14rem, 52.16vw, 22rem);
    min-height: 0;
  }

  .about-hero__monogram {
    display: none;
  }

  .about-section {
    padding-top: 3.4rem;
  }

  .about-section--intro {
    padding-top: 3.6rem;
  }

  .about-section__inner,
  .about-journey__inner {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .about-section__content,
  .about-journey__content {
    grid-column: 1;
    grid-row: 2;
    padding-top: 2.45rem;
  }

  .about-section__eyebrow {
    justify-self: start;
    font-size: clamp(1.65rem, 7.6vw, 2.2rem);
    text-align: left;
  }

  .about-section__title {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 1.08;
  }

  .about-vision__quote p {
    font-size: clamp(2.1rem, 9.5vw, 3rem);
    line-height: 1.14;
  }

  html[lang="zh-CN"] .about-section--intro .about-section__title {
    white-space: normal;
  }

  html[lang="zh-CN"] .about-section__eyebrow {
    font-size: clamp(1.52rem, 7.2vw, 2.05rem);
  }

  html[lang="zh-CN"] .about-vision__quote p {
    font-size: clamp(1.95rem, 8.8vw, 2.72rem);
  }

  .about-section__copy,
  .about-journey__columns p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .about-section__rule {
    grid-row: 3;
    margin-top: 3.4rem;
  }

  .about-journey {
    padding-top: 3.6rem;
    padding-bottom: 4rem;
  }

  .about-journey__accordion {
    grid-column: 1;
    margin-top: 3.2rem;
  }

  .journey-accordion__trigger {
    min-height: 6.3rem;
    gap: 0.7rem;
    padding: 1.3rem 0 1.15rem;
  }

  .journey-accordion__title {
    font-size: clamp(1.45rem, 6.7vw, 2.1rem);
    letter-spacing: -0.055em;
  }

  .journey-accordion__trigger::after {
    margin-right: 0.45rem;
    font-size: 0.68rem;
  }

  .journey-accordion__icon {
    width: 2.35rem;
    height: 2rem;
    margin-right: 0;
  }

  .journey-accordion__panel {
    margin-bottom: 1rem;
    padding: 1rem;
  }

  .journey-accordion__intro,
  .journey-accordion__event {
    font-size: 0.84rem;
  }

  .journey-accordion__entry {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 0.72rem 0;
  }

  .journey-accordion__year {
    font-size: 0.72rem;
  }

  .about-outro__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-outro__media {
    max-width: none;
    min-height: auto;
    aspect-ratio: 679 / 306;
  }

  .about-outro__quote {
    padding: 1.4rem 1.1rem 1.35rem;
    font-size: 1rem;
    line-height: 1.38;
  }

  .page-kicker {
    min-height: 1.5rem;
    padding: 0.16rem 0.58rem 0.2rem;
    font-size: 0.72rem;
  }

  .cases-hero,
  .case-detail-hero,
  .services-page-hero,
  .contact-hero {
    padding-top: 1.5rem;
  }

  .cases-hero {
    padding-top: 1.35rem;
    padding-bottom: 0.95rem;
  }

  .cases-hero__header h1,
  .services-page-hero__content h1,
  .contact-hero__inner h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.75rem);
  }

  .cases-hero__copy,
  .services-page-hero__content p,
  .contact-hero__inner p,
  .service-story__copy p,
  .office-card p {
    font-size: 0.86rem;
  }

  .cases-gallery {
    grid-template-columns: 1fr;
  }

  .case-showcase,
  .case-showcase--primary,
  .case-showcase--portrait,
  .case-showcase--wide,
  .cases-gallery > .case-showcase:nth-child(5),
  .cases-gallery > .case-showcase:nth-child(6) {
    height: auto;
  }

  .case-showcase h2 {
    font-size: 1.1rem;
  }

  .case-showcase__tag {
    top: 0.72rem;
    left: 0.72rem;
    font-size: 0.64rem;
  }

  .services-page-hero__visual,
  .service-story__media {
    min-height: 14.5rem;
  }

  .case-detail-stage__title {
    padding-bottom: 0.72rem;
  }

  .case-detail-stage__title h1,
  .service-story__copy h2,
  .services-page-outro p {
    font-size: clamp(1.3rem, 6.8vw, 1.8rem);
  }

  .case-detail-stage__panel {
    margin-top: 0.75rem;
    padding: 1rem;
  }

  .case-detail-stage__metric {
    margin-bottom: 0.7rem;
    font-size: clamp(3.5rem, 18vw, 4.8rem);
  }

  .case-detail-note + .case-detail-note {
    margin-top: 0.92rem;
  }

  .case-detail-note h2,
  .case-detail-timeline-panel__title {
    font-size: clamp(1.3rem, 6.8vw, 1.75rem);
  }

  .case-detail-note p,
  .case-detail-timeline-panel__summary {
    font-size: 0.86rem;
  }

  .case-detail-stage__visual--hero {
    aspect-ratio: 16 / 9;
  }

  .case-detail-stage__gallery {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .case-detail-stage__visual--gallery {
    aspect-ratio: 16 / 9;
  }

  .case-detail-timeline-panel__list {
    gap: 0.54rem;
    margin-top: 1rem;
  }

  .case-detail-arrow {
    min-height: 1.8rem;
    padding: 0.26rem 1.55rem 0.28rem 0.82rem;
    font-size: 0.78rem;
  }

  .services-page-nav {
    gap: 0.34rem;
  }

  .services-page-nav a {
    min-height: 1.8rem;
    padding: 0.16rem 0.52rem;
    font-size: 0.64rem;
  }

  .services-page-hero__visual-stack {
    position: static;
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.4rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
  }

  .service-story {
    padding-bottom: 2rem;
  }

  .service-story__copy {
    padding: 0;
  }

  .contact-card,
  .office-card {
    min-height: 0;
    padding: 1rem;
  }

  .contact-card a {
    font-size: 0.98rem;
  }
}

@media (max-width: 1100px) {
  .services-page-shell {
    width: var(--container);
  }

  .service-panel__body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-page-outro__inner {
    min-height: 18rem;
  }

  .service-panel__copy p,
  .service-panel__link,
  .service-panel__media,
  .services-page-intro,
  .services-page-outro__text {
    width: 100%;
  }

  .services-page-outro__copy {
    width: min(34rem, 48%);
  }
}

@media (max-width: 780px) {
  .services-page-shell {
    width: var(--container);
  }

  .services-page-hero {
    padding-top: 1.35rem;
  }

  .services-page-hero__image img {
    height: auto;
    aspect-ratio: 1.62 / 1;
  }

  .services-page-intro {
    padding: 1.15rem 0 1.35rem;
  }

  .services-page-intro p {
    max-width: none;
    font-size: clamp(1.16rem, 5vw, 1.5rem);
    line-height: 1.22;
  }

  .services-page-sections {
    padding-bottom: 2rem;
  }

  .service-panel {
    padding: 0;
  }

  .service-panel + .service-panel {
    margin-top: 0.85rem;
  }

  .service-panel__header {
    gap: 0.55rem;
  }

  .service-panel__label {
    min-height: 1.55rem;
    padding: 0.12rem 0.28rem 0.14rem;
    font-size: 0.74rem;
  }

  .service-panel__body {
    gap: 0.85rem;
    padding-top: 0.8rem;
  }

  .service-panel__copy h2 {
    width: 100%;
    font-size: clamp(1.18rem, 5.4vw, 1.48rem);
  }

  .service-panel__copy p,
  .service-panel__link {
    margin-top: 0.7rem;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .service-panel__media {
    aspect-ratio: 2.2 / 1;
  }

  .services-page-outro {
    padding: 1rem 0 1.1rem;
  }

  .services-page-outro__inner {
    min-height: 0;
  }

  .services-page-outro__visual {
    width: 100%;
    background-position: center center;
  }

  .services-page-outro__copy {
    width: 100%;
  }

  .services-page-outro__text {
    width: 100%;
    font-size: clamp(0.98rem, 4.1vw, 1.14rem);
  }
}

@media (max-width: 1100px) {
  .contact-page-shell {
    width: var(--container);
  }

  .contact-page-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-page-grid {
    column-gap: 3rem;
    row-gap: 1.8rem;
  }
}

@media (max-width: 780px) {
  .contact-page-banner {
    padding-top: 0;
  }

  .contact-page-banner__image img {
    height: auto;
    aspect-ratio: 1.95 / 1;
  }

  .contact-page-content {
    padding: 1.2rem 0 2.3rem;
  }

  .contact-page-shell {
    width: var(--container);
  }

  .contact-page-title {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-top: 1.55rem;
  }

  .contact-line {
    min-height: 0;
  }

  .contact-line h2,
  .contact-office h2 {
    font-size: clamp(18px, 5vw, 28px);
  }

  .contact-line a,
  .contact-office p {
    font-size: 0.96rem;
  }

  .contact-page-divider {
    margin-top: 1.95rem;
  }

  .contact-office-list {
    gap: 1.8rem;
    padding-top: 1.45rem;
  }
}

@keyframes heroGlow {
  from {
    transform: translate3d(-1.5%, -1.5%, 0) scale(1);
    opacity: 0.8;
  }

  to {
    transform: translate3d(1.5%, 1.5%, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes heroProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes heroSlideScroll {
  from {
    transform: translate3d(-1.4%, -0.8%, 0) scale(1.045);
  }

  to {
    transform: translate3d(1.4%, 0.8%, 0) scale(1.045);
  }
}
