:root {
  --bg-dark: #2b211c;
  --bg-dark-soft: #3a2b23;
  --bg-light: #faf7f2;
  --bg-warm: #f7f1e8;
  --panel-warm: #ede1d2;
  --accent: #bfa06a;
  --accent-muted: #a88952;
  --text-dark: #1f1a16;
  --text-light: #fff8ef;
  --dark-base: var(--bg-dark);
  --dark-soft: var(--bg-dark-soft);
  --dark-warm: #4a382e;
  --brown-muted: #5a4638;
  --image-warm: #7a604c;
  --label-warm: #806e5f;
  --label-soft: #b7a693;
  --mist: #f7f1e8;
  --mist-2: #e8d8c3;
  --paper: var(--text-light);
  --ink: var(--text-dark);
  --muted: #75685c;
  --line: rgba(43, 33, 28, 0.18);
  --line-dark: rgba(255, 248, 239, 0.22);
  --radius: 20px;
  --max: 1240px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.2, 0, 0.2, 1);
  --dark-world: linear-gradient(145deg, #3a2b23 0%, #2b211c 46%, #1f1713 100%);
  --glass-blur: blur(10px);
  --service-glass-blur: blur(14px) saturate(1.1);
  --service-shadow:
    inset 0 1px 0 rgba(255, 248, 239, 0.2),
    inset 0 -1px 0 rgba(191, 160, 106, 0.08),
    0 28px 60px rgba(24, 16, 11, 0.32),
    0 0 36px rgba(191, 160, 106, 0.1);
  --panel-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--dark-base);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  color: var(--paper);
}

.brand,
.nav {
  border: 1px solid rgba(255, 248, 239, 0.2);
  background: rgba(43, 33, 28, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(31, 23, 19, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  line-height: 1.1;
  text-shadow: 0 1px 24px rgba(31, 23, 19, 0.34);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 850px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(43, 33, 28, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(248, 249, 248, 0.86);
  font-size: 0.78rem;
  line-height: 1;
  transition: background 180ms var(--ease-standard), color 180ms var(--ease-standard);
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(191, 160, 106, 0.16);
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(191, 160, 106, 0.24);
  outline: none;
}

.menu-toggle {
  display: none;
}

.hero-takeover-stack {
  position: relative;
  z-index: 6;
  overflow: visible;
  background: #160f0b;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: var(--dark-base);
  isolation: isolate;
  --hero-left: clamp(24px, 6vw, 88px);
  --hero-copy-bottom: clamp(136px, 15vh, 184px);
  --hero-control-bottom: clamp(54px, 7vh, 78px);
  --hero-panel-w: clamp(220px, 18vw, 340px);
  --hero-panel-h: calc(var(--hero-panel-w) * 1.333333);
  --hero-panel-gap: clamp(24px, 2.2vw, 44px);
  --hero-lane-gap: calc(var(--hero-panel-h) + var(--hero-panel-gap));
  --hero-track-rotation: -9deg;
}

.hero + .section {
  position: relative;
  z-index: 6;
  box-shadow: 0 -44px 110px rgba(24, 16, 11, 0.34);
}

.hero-image-field,
.hero-grain,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image-field {
  top: -30vh;
  right: auto;
  bottom: auto;
  left: -34vw;
  z-index: 0;
  width: 168vw;
  height: calc(var(--hero-lane-gap) + var(--hero-lane-gap) + var(--hero-panel-h) + 54vh);
  overflow: hidden;
  background:
    radial-gradient(circle at 36% 38%, rgba(191, 160, 106, 0.12), transparent 32%),
    rgba(31, 23, 19, 0.9);
  transform: rotate(var(--hero-track-rotation)) translate3d(0, 0, 0);
  transform-origin: center;
  pointer-events: none;
}

.hero-marquee-stage {
  position: absolute;
  inset: 0;
  overflow: visible;
  transform: translate3d(0, 0, 0);
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-marquee-lane {
  position: absolute;
  left: -18vw;
  width: max-content;
  overflow: visible;
}

.hero-marquee-lane-top {
  top: 0;
}

.hero-marquee-lane-middle {
  top: var(--hero-lane-gap);
}

.hero-marquee-lane-bottom {
  top: calc(var(--hero-lane-gap) + var(--hero-lane-gap));
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero:not(.is-marquee-ready) .hero-marquee-track {
  animation-play-state: running;
}

.hero-marquee-lane-top .hero-marquee-track,
.hero-marquee-lane-bottom .hero-marquee-track {
  animation: hero-marquee-right 74s linear infinite;
  transform: translate3d(-50%, 0, 0);
}

.hero-marquee-lane-middle .hero-marquee-track {
  animation: hero-marquee-left 82s linear infinite;
  transform: translate3d(0, 0, 0);
}

.hero.is-marquee-ready .hero-marquee-lane-top .hero-marquee-track {
  animation-delay: -18s;
}

.hero.is-marquee-ready .hero-marquee-lane-middle .hero-marquee-track {
  animation-delay: -27s;
}

.hero.is-marquee-ready .hero-marquee-lane-bottom .hero-marquee-track {
  animation-delay: -41s;
}

.hero-marquee-set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--hero-panel-gap);
  padding-right: var(--hero-panel-gap);
}

.hero-track-panel {
  position: relative;
  flex: 0 0 auto;
  width: var(--hero-panel-w);
  height: var(--hero-panel-h);
  overflow: hidden;
  margin: 0;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid rgba(255, 248, 239, 0.12);
  border-radius: 6px;
  background: rgba(43, 33, 28, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 239, 0.08),
    0 24px 72px rgba(24, 16, 11, 0.34);
}

.hero-track-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.98) brightness(0.82) sepia(0.08);
  transform: translate3d(0, 0, 0) scale(1.025);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-grain {
  z-index: 2;
  background-image: url("Content/Optimized/Hero/atelier-glass-grain.jpeg");
  background-position: center;
  background-size: cover;
  mix-blend-mode: overlay;
  opacity: 0.045;
  pointer-events: none;
}

.hero-shade {
  z-index: 3;
  background:
    radial-gradient(circle at 64% 26%, rgba(191, 160, 106, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(31, 23, 19, 0.88) 0%, rgba(43, 33, 28, 0.58) 39%, rgba(31, 23, 19, 0.34) 72%, rgba(31, 23, 19, 0.62) 100%),
    linear-gradient(180deg, rgba(31, 23, 19, 0.44) 0%, rgba(43, 33, 28, 0.12) 38%, rgba(31, 23, 19, 0.88) 100%);
}

.hero-content {
  position: absolute;
  bottom: var(--hero-copy-bottom);
  left: var(--hero-left);
  z-index: 4;
  width: min(900px, calc(100% - var(--hero-left) - 420px));
  padding: 0;
  color: var(--paper);
}

.hero-copy {
  display: grid;
  gap: clamp(18px, 1.9vw, 28px);
  max-width: 900px;
  margin-top: 0;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: atelier-copy-enter 1000ms var(--ease-out) 140ms forwards;
}

.hero-copy p {
  max-width: 10.7em;
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(2.25rem, 4.8vw, 5.8rem);
  line-height: 1.02;
  text-wrap: balance;
}

h1,
h2,
h3,
.name-line {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-copy span {
  display: block;
  max-width: 34em;
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(1.05rem, 1.55vw, 1.52rem);
  line-height: 1.5;
  color: rgba(255, 248, 239, 0.86);
}

@keyframes hero-marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes hero-marquee-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes atelier-copy-enter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-cta,
.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: currentColor;
  font-size: 0.86rem;
  white-space: nowrap;
  transition:
    background 180ms var(--ease-standard),
    border-color 180ms var(--ease-standard),
    color 180ms var(--ease-standard);
}

.hero-cta {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 4;
  min-height: 0;
  padding: 12px 22px;
  border: 1px solid rgba(191, 160, 106, 0.42);
  border-radius: 999px;
  background: rgba(43, 33, 28, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-light);
  transition:
    background 250ms var(--ease-standard),
    border-color 250ms var(--ease-standard),
    color 250ms var(--ease-standard),
    transform 250ms var(--ease-out);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: rgba(191, 160, 106, 0.16);
  border-color: rgba(191, 160, 106, 0.68);
  color: var(--text-light);
  transform: translateY(-2px);
  outline: none;
}

@media (min-width: 1025px) {
  .hero {
    --hero-left: clamp(64px, 6vw, 116px);
    --hero-copy-bottom: clamp(130px, 14.8vh, 172px);
    --hero-control-bottom: clamp(52px, 6.4vh, 72px);
  }

  .hero-content {
    bottom: var(--hero-copy-bottom);
    left: var(--hero-left);
    width: min(900px, calc(100% - var(--hero-left) - 360px));
  }

  .hero-copy {
    gap: clamp(18px, 1.9vw, 28px);
    max-width: 900px;
  }

  .hero-copy p {
    max-width: 10.7em;
  }

  .hero-copy span {
    display: block;
    max-width: 34em;
  }

  .hero-cta {
    right: auto;
    bottom: calc(var(--hero-control-bottom) - 18px);
    left: calc(var(--hero-left) + clamp(370px, 24vw, 456px));
  }
}

.audio-toggle {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: calc(96px + env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(191, 160, 106, 0.36);
  border-radius: 999px;
  background: rgba(43, 33, 28, 0.54);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 239, 0.14),
    0 12px 34px rgba(24, 16, 11, 0.2);
  color: rgba(255, 248, 239, 0.88);
  font: inherit;
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    background 180ms var(--ease-standard),
    border-color 180ms var(--ease-standard),
    color 180ms var(--ease-standard),
    transform 180ms var(--ease-out);
}

.audio-toggle::before {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(191, 160, 106, 0.16);
  content: "";
}

.audio-toggle.is-muted {
  border-color: rgba(255, 248, 239, 0.18);
  color: rgba(255, 248, 239, 0.68);
}

.audio-toggle.is-muted::before {
  background: rgba(255, 248, 239, 0.48);
  box-shadow: none;
}

.audio-toggle:hover,
.audio-toggle:focus-visible {
  background: rgba(74, 56, 46, 0.72);
  border-color: rgba(191, 160, 106, 0.58);
  color: var(--text-light);
  transform: translateY(-1px);
  outline: none;
}

.contact-links a:hover {
  background: rgba(191, 160, 106, 0.16);
  border-color: var(--accent);
  color: var(--paper);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(112px, 13vw, 188px) clamp(22px, 4vw, 48px);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(170px, 0.27fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 94px);
}

.section-title span {
  padding-top: 0.75em;
  border-top: 1px solid var(--line);
  color: var(--label-warm);
  font-size: 0.82rem;
  line-height: 1.5;
}

.section-title h2 {
  max-width: 890px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.9vw, 5.8rem);
  line-height: 0.98;
}

.wide-title h2 {
  max-width: 1080px;
}

.compact-title {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 42px;
}

.compact-title h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.45rem);
}

.paired {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: start;
}

.editorial-pair {
  align-items: stretch;
}

.copy-panel {
  min-width: 0;
}

.copy-panel p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.06vw, 1.08rem);
  line-height: 1.88;
}

.copy-panel p + p {
  margin-top: 1.18em;
}

.copy-panel.chinese p,
.copy-panel.chinese li {
  line-height: 2;
}

.copy-panel ul {
  margin: 1em 0 1.3em;
  padding-left: 1.1em;
}

.copy-panel li {
  padding-left: 0.3em;
  color: var(--ink);
  line-height: 1.82;
}

.who-takeover {
  position: relative;
  z-index: 8;
  min-height: 100svh;
  margin-top: clamp(76px, 9svh, 118px);
  overflow: hidden;
  border-radius: clamp(26px, 3.2vw, 50px) clamp(26px, 3.2vw, 50px) 0 0;
  background: #160f0b;
  box-shadow:
    0 -48px 120px rgba(12, 8, 6, 0.48),
    inset 0 1px 0 rgba(255, 248, 239, 0.12);
  color: #f8efe3;
  isolation: isolate;
}

.who-takeover-media,
.who-takeover-overlay {
  position: absolute;
  inset: 0;
}

.who-takeover-media {
  z-index: 0;
}

.who-takeover-media picture,
.who-takeover-media img {
  width: 100%;
  height: 100%;
}

.who-takeover-media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04) brightness(0.82);
  transform: scale(1.04);
  transform-origin: center;
}

.who-takeover-overlay {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 16%, rgba(191, 160, 106, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(18, 12, 9, 0.9) 0%, rgba(24, 16, 12, 0.72) 40%, rgba(24, 16, 12, 0.3) 74%, rgba(24, 16, 12, 0.1) 100%),
    linear-gradient(0deg, rgba(18, 12, 9, 0.88) 0%, rgba(22, 15, 11, 0.48) 48%, rgba(18, 12, 9, 0.62) 100%);
}

.who-takeover-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100%, 1360px);
  min-height: 100svh;
  padding: clamp(84px, 10vh, 132px) clamp(28px, 7vw, 104px) clamp(70px, 8vh, 110px);
}

.who-takeover-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.22fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  max-width: 1220px;
  margin-bottom: clamp(26px, 3.6vh, 48px);
}

.who-takeover-heading span {
  padding-top: 0.72em;
  border-top: 1px solid rgba(248, 239, 227, 0.34);
  color: rgba(248, 239, 227, 0.74);
  font-size: 0.82rem;
  line-height: 1.5;
}

.who-takeover-heading h2 {
  max-width: 900px;
  color: #fff8ef;
  font-size: clamp(2.55rem, 5vw, 5.8rem);
  line-height: 0.98;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.who-takeover-heading h2::after {
  display: block;
  width: clamp(64px, 7vw, 122px);
  height: 2px;
  margin-top: clamp(16px, 1.5vw, 22px);
  background: var(--accent);
  content: "";
}

.who-copy-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  width: min(100%, 1180px);
  padding-top: clamp(22px, 2.6vw, 34px);
  border-top: 1px solid rgba(248, 239, 227, 0.2);
}

.who-copy-grid::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: min(30vw, 300px);
  height: 1px;
  background: rgba(191, 160, 106, 0.82);
  content: "";
}

.who-takeover.is-reveal-ready .who-reveal-heading,
.who-takeover.is-reveal-ready .who-reveal-card {
  backface-visibility: hidden;
  opacity: 0;
  will-change: transform, opacity;
}

.who-takeover.is-reveal-ready .who-reveal-heading {
  transform: translate3d(0, 40px, 0);
}

.who-takeover.is-reveal-ready .who-reveal-card {
  transform: translate3d(0, 30px, 0);
}

.who-takeover .copy-panel {
  min-width: 0;
}

.who-takeover .copy-panel p {
  color: rgba(255, 248, 239, 0.83);
  font-size: clamp(0.92rem, 0.96vw, 1.02rem);
  line-height: 1.64;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.36);
}

.who-takeover .copy-panel.chinese {
  margin-top: 0;
}

.who-takeover .copy-panel.chinese p {
  line-height: 1.78;
}

.visual-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(44px, 7vw, 92px);
}

.visual-pair img {
  height: clamp(300px, 34vw, 500px);
  object-fit: cover;
  border-radius: 24px;
  filter: saturate(0.9) contrast(0.98) brightness(0.96);
}

.visual-pair img:first-child {
  margin-top: 0;
}

.services-scroll {
  position: relative;
  z-index: 9;
  min-height: 1180svh;
  margin-top: -100svh;
  overflow: clip;
  background: transparent;
  color: var(--paper);
  isolation: isolate;
}

.services-scroll::before,
.services-scroll::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.services-scroll::before {
  background:
    linear-gradient(90deg, rgba(15, 10, 8, 0.96) 0%, rgba(22, 15, 11, 0.72) 44%, rgba(22, 15, 11, 0.18) 100%),
    radial-gradient(circle at 82% 18%, rgba(191, 160, 106, 0.1), transparent 34%);
  opacity: var(--services-backdrop-opacity, 0);
}

.services-scroll::after {
  background:
    linear-gradient(180deg, rgba(15, 10, 8, 0.34), transparent 18%, transparent 78%, rgba(15, 10, 8, 0.7)),
    repeating-linear-gradient(90deg, rgba(255, 248, 239, 0.025) 0 1px, transparent 1px 120px);
  opacity: calc(var(--services-backdrop-opacity, 0) * 0.72);
}

.services-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}

.services-copy-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  height: 100svh;
  min-height: 100svh;
  padding: clamp(90px, 11vh, 136px) clamp(34px, 5.6vw, 92px);
  background:
    radial-gradient(circle at 16% 18%, rgba(191, 160, 106, 0.12), transparent 28%),
    linear-gradient(145deg, #241813 0%, #160f0b 46%, #0f0a08 100%);
  -webkit-clip-path: inset(0 var(--services-copy-clip-right, 100%) 0 0);
  clip-path: inset(0 var(--services-copy-clip-right, 100%) 0 0);
  transform: translate3d(0, 0, 0);
  will-change: clip-path;
}

.services-copy-panel > * {
  transform: translate3d(var(--services-copy-drift, -3.6vw), 0, 0);
  will-change: transform;
}

.services-eyebrow {
  width: fit-content;
  margin: 0 0 clamp(18px, 3vh, 30px);
  padding-top: 0.72em;
  border-top: 1px solid rgba(248, 239, 227, 0.28);
  color: rgba(255, 248, 239, 0.68);
  font-size: 0.78rem;
  line-height: 1.4;
}

.services-copy-panel h2 {
  max-width: 720px;
  margin: 0;
  color: #fff8ef;
  font-size: clamp(3.2rem, 6.2vw, 7.2rem);
  line-height: 0.92;
  text-shadow: 0 22px 68px rgba(0, 0, 0, 0.34);
}

.services-progress {
  display: flex;
  gap: 0.38em;
  align-items: baseline;
  margin-top: clamp(24px, 4vh, 42px);
  color: rgba(255, 248, 239, 0.6);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  letter-spacing: 0.08em;
}

.services-progress-current {
  color: var(--accent);
}

.services-steps {
  position: relative;
  min-height: clamp(360px, 48vh, 560px);
  margin-top: clamp(30px, 5vh, 54px);
  border-top: 1px solid rgba(248, 239, 227, 0.18);
}

.services-steps::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: min(42%, 260px);
  height: 1px;
  background: rgba(191, 160, 106, 0.86);
  content: "";
}

.service-step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(24px, 3vh, 38px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 260ms var(--ease-standard),
    transform 360ms var(--ease-out);
}

.service-step.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 861px) {
  .hero-takeover-stack {
    padding-bottom: 100svh;
  }

  .who-takeover {
    position: sticky;
    top: 0;
  }
}

.service-step h3 {
  max-width: 720px;
  margin: 0 0 clamp(18px, 2.4vh, 28px);
  color: rgba(255, 248, 239, 0.96);
  font-size: clamp(1.45rem, 2.25vw, 2.75rem);
  line-height: 1.08;
}

.service-step-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
  gap: clamp(22px, 3.5vw, 48px);
  align-items: start;
}

.service-step .copy-panel {
  min-width: 0;
}

.service-step .copy-panel p,
.service-step .copy-panel li {
  color: rgba(255, 248, 239, 0.76);
  font-size: clamp(0.78rem, 0.86vw, 0.92rem);
  line-height: 1.58;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

.service-step .copy-panel.chinese p,
.service-step .copy-panel.chinese li {
  line-height: 1.78;
}

.service-step .copy-panel ul {
  margin: 0.72em 0 0.9em;
  padding-left: 1.1em;
}

.services-scroll.is-final-service .services-copy-panel {
  padding-top: clamp(58px, 6.4vh, 76px);
  padding-bottom: clamp(52px, 5.8vh, 70px);
}

.services-scroll.is-final-service .services-copy-panel h2 {
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
}

.services-scroll.is-final-service .services-progress {
  margin-top: clamp(14px, 2vh, 22px);
}

.services-scroll.is-final-service .services-steps {
  min-height: clamp(470px, 59vh, 620px);
  margin-top: clamp(18px, 2.4vh, 28px);
}

.service-step[data-step="6"] {
  padding-top: clamp(16px, 2vh, 24px);
}

.service-step[data-step="6"] h3 {
  margin-bottom: clamp(12px, 1.6vh, 18px);
  font-size: clamp(1.25rem, 1.65vw, 1.92rem);
  line-height: 1.04;
}

.service-step[data-step="6"] .service-step-copy {
  gap: clamp(18px, 2.2vw, 32px);
}

.service-step[data-step="6"] .copy-panel p,
.service-step[data-step="6"] .copy-panel li {
  font-size: clamp(0.68rem, 0.72vw, 0.78rem);
  line-height: 1.34;
}

.service-step[data-step="6"] .copy-panel.chinese p,
.service-step[data-step="6"] .copy-panel.chinese li {
  line-height: 1.5;
}

.service-step[data-step="6"] .copy-panel p {
  margin-bottom: 0.6em;
}

.service-step[data-step="6"] .copy-panel ul {
  margin: 0.42em 0 0.56em;
  padding-left: 1em;
}

.services-image-panel {
  position: relative;
  z-index: 1;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  border-left: 1px solid rgba(248, 239, 227, 0.11);
  background: #120c09;
  -webkit-clip-path: inset(var(--services-image-clip-top, 100%) 0 0 0);
  clip-path: inset(var(--services-image-clip-top, 100%) 0 0 0);
  transform: translate3d(0, 0, 0);
  will-change: clip-path;
}

.services-image-panel::before {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.4), transparent 28%),
    linear-gradient(180deg, rgba(18, 12, 9, 0.58), transparent 18%, transparent 76%, rgba(18, 12, 9, 0.72));
  content: "";
}

.services-image-stack {
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  transform: translate3d(0, var(--services-image-drift, 4svh), 0);
  will-change: transform;
}

.services-image-stack > .service-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100svh;
  margin: 0;
  overflow: hidden;
  background: #211711;
}

.services-image-stack > .service-visual {
  position: absolute;
  inset: 0;
  height: 100%;
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  backface-visibility: hidden;
}

.services-image-stack > .service-visual:first-child {
  transform: translate3d(0, 0, 0);
}

.service-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100svh;
  margin: 0;
  overflow: hidden;
  background: #211711;
}

.service-visual::before,
.service-visual::after {
  position: absolute;
  inset: 0;
  content: "";
}

.service-visual::before {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 248, 239, 0.22), transparent 18%),
    linear-gradient(135deg, rgba(191, 160, 106, 0.34), transparent 42%),
    linear-gradient(180deg, rgba(74, 56, 46, 0.28), rgba(15, 10, 8, 0.18));
  filter: saturate(0.95);
}

.service-visual::after {
  background:
    linear-gradient(22deg, transparent 0 48%, rgba(255, 248, 239, 0.08) 48.2% 49%, transparent 49.2%),
    radial-gradient(circle at 28% 82%, rgba(191, 160, 106, 0.2), transparent 24%),
    linear-gradient(0deg, rgba(15, 10, 8, 0.88), transparent 62%);
}

.service-visual:nth-child(2)::before {
  background:
    radial-gradient(circle at 24% 26%, rgba(191, 160, 106, 0.32), transparent 22%),
    linear-gradient(150deg, rgba(97, 70, 48, 0.46), transparent 48%),
    linear-gradient(180deg, rgba(37, 26, 19, 0.34), rgba(15, 10, 8, 0.22));
}

.service-visual:nth-child(3)::before {
  background:
    radial-gradient(circle at 66% 70%, rgba(168, 137, 82, 0.34), transparent 25%),
    linear-gradient(115deg, rgba(60, 42, 30, 0.6), transparent 52%),
    repeating-linear-gradient(90deg, rgba(255, 248, 239, 0.05) 0 1px, transparent 1px 54px);
}

.service-visual:nth-child(4)::before {
  background:
    radial-gradient(circle at 42% 34%, rgba(232, 216, 195, 0.18), transparent 18%),
    linear-gradient(145deg, rgba(116, 83, 53, 0.5), transparent 48%),
    linear-gradient(0deg, rgba(15, 10, 8, 0.44), transparent 72%);
}

.service-visual:nth-child(5)::before {
  background:
    radial-gradient(circle at 72% 28%, rgba(191, 160, 106, 0.2), transparent 18%),
    radial-gradient(circle at 28% 72%, rgba(255, 248, 239, 0.13), transparent 24%),
    linear-gradient(150deg, rgba(59, 44, 35, 0.58), transparent 54%);
}

.service-visual:nth-child(6)::before {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 248, 239, 0.16), transparent 24%),
    linear-gradient(125deg, rgba(136, 91, 58, 0.44), transparent 40%),
    linear-gradient(180deg, rgba(43, 33, 28, 0.28), rgba(15, 10, 8, 0.2));
}

.service-visual:nth-child(7)::before {
  background:
    radial-gradient(circle at 74% 18%, rgba(232, 216, 195, 0.18), transparent 22%),
    linear-gradient(130deg, rgba(84, 62, 48, 0.62), transparent 50%),
    repeating-linear-gradient(0deg, rgba(255, 248, 239, 0.045) 0 1px, transparent 1px 64px);
}

.service-visual img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(1.04) brightness(0.88);
  transform: translate3d(0, 0, 0) scale(1.04);
  will-change: transform;
  backface-visibility: hidden;
}

.service-visual:not(.service-visual-placeholder)::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.34), transparent 38%),
    linear-gradient(180deg, rgba(18, 12, 9, 0.34), transparent 30%, rgba(18, 12, 9, 0.64) 100%);
  filter: none;
}

.service-visual:not(.service-visual-placeholder)::after {
  z-index: 2;
  background:
    radial-gradient(circle at 62% 20%, rgba(255, 248, 239, 0.08), transparent 26%),
    linear-gradient(0deg, rgba(15, 10, 8, 0.62), transparent 54%);
}

.service-visual span {
  position: relative;
  z-index: 3;
  margin: clamp(26px, 4vw, 58px);
  padding-top: 0.8em;
  border-top: 1px solid rgba(248, 239, 227, 0.28);
  color: rgba(255, 248, 239, 0.74);
  font-size: clamp(0.82rem, 1vw, 1rem);
  letter-spacing: 0.02em;
}

.service-mobile-visual {
  display: none;
}

@media (min-width: 861px) {
  .service-step-copy {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

.services-section {
  position: relative;
  max-width: none;
  overflow: clip;
  padding-right: clamp(18px, 3vw, 42px);
  padding-left: clamp(18px, 3vw, 42px);
  background:
    radial-gradient(circle at 18% 14%, rgba(191, 160, 106, 0.16), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(232, 216, 195, 0.1), transparent 28%),
    var(--dark-world);
  color: var(--paper);
  isolation: isolate;
}

.services-section > .section-title,
.services {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.services-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}

.services-ambient span {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(64px);
  opacity: 0.18;
  transform: translate3d(0, 0, 0);
  animation: service-orb-drift 30s ease-in-out infinite alternate;
  will-change: transform;
}

.services-ambient span:nth-child(1) {
  top: 9%;
  left: 7%;
  width: clamp(190px, 18vw, 340px);
  height: clamp(190px, 18vw, 340px);
  background: rgba(191, 160, 106, 0.28);
  animation-duration: 34s;
}

.services-ambient span:nth-child(2) {
  top: 23%;
  right: 9%;
  width: clamp(170px, 16vw, 300px);
  height: clamp(170px, 16vw, 300px);
  background: rgba(168, 137, 82, 0.22);
  animation-duration: 38s;
  animation-delay: -9s;
}

.services-ambient span:nth-child(3) {
  top: 47%;
  left: 15%;
  width: clamp(210px, 20vw, 380px);
  height: clamp(210px, 20vw, 380px);
  background: rgba(232, 216, 195, 0.16);
  animation-duration: 42s;
  animation-delay: -16s;
}

.services-ambient span:nth-child(4) {
  right: 13%;
  bottom: 20%;
  width: clamp(200px, 19vw, 360px);
  height: clamp(200px, 19vw, 360px);
  background: rgba(90, 70, 56, 0.38);
  animation-duration: 36s;
  animation-delay: -22s;
}

.services-ambient span:nth-child(5) {
  bottom: 7%;
  left: 35%;
  width: clamp(150px, 14vw, 260px);
  height: clamp(150px, 14vw, 260px);
  background: rgba(191, 160, 106, 0.18);
  animation-duration: 44s;
  animation-delay: -28s;
}

@keyframes service-orb-drift {
  0% {
    transform: translate3d(-18px, 14px, 0) scale(0.98);
  }

  50% {
    transform: translate3d(22px, -18px, 0) scale(1.04);
  }

  100% {
    transform: translate3d(34px, 20px, 0) scale(1);
  }
}

.services-section::before,
.services-section::after {
  position: absolute;
  z-index: 0;
  display: block;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 28%, rgba(232, 216, 195, 0.38), rgba(191, 160, 106, 0.18) 34%, rgba(191, 160, 106, 0.06) 64%, transparent 72%);
  filter: blur(28px);
  opacity: 0.2;
  pointer-events: none;
  content: "";
}

.services-section::before {
  top: 9%;
  right: max(24px, 8vw);
  width: clamp(170px, 18vw, 300px);
  height: clamp(170px, 18vw, 300px);
}

.services-section::after {
  bottom: 14%;
  left: max(18px, 7vw);
  width: clamp(150px, 16vw, 260px);
  height: clamp(150px, 16vw, 260px);
  opacity: 0.16;
}

.services-section .section-title span {
  border-color: rgba(191, 160, 106, 0.34);
  color: rgba(255, 248, 239, 0.72);
}

.services-section .section-title h2 {
  color: var(--paper);
}

.what-title {
  margin-bottom: 16px;
  color: var(--paper);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.1;
}

.what-count {
  margin-bottom: 40px;
  color: var(--paper);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0.7;
}

.services {
  display: grid;
  gap: 0;
  padding-bottom: clamp(80px, 12vw, 156px);
  perspective: 1800px;
  isolation: isolate;
  contain: layout style;
}

.services::before {
  display: block;
  width: min(100%, 760px);
  height: 1px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  background: linear-gradient(90deg, transparent, rgba(191, 160, 106, 0.42), transparent);
  content: "";
}

.service {
  position: sticky;
  top: clamp(74px, 10vh, 116px);
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 4vw, 72px);
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(42px, 5vw, 76px);
  border: 1px solid rgba(191, 160, 106, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(74, 56, 46, 0.66), rgba(31, 23, 19, 0.58)),
    radial-gradient(circle at 16% 0%, rgba(255, 248, 239, 0.1), transparent 34%);
  backdrop-filter: var(--service-glass-blur);
  box-shadow: var(--service-shadow);
  transform-origin: center top;
  contain: layout style;
}

.service.is-scroll-near {
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.service::before {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 78% 0%, rgba(191, 160, 106, 0.16), transparent 32%);
  opacity: 0.76;
  pointer-events: none;
  content: "";
}

.service::after {
  position: absolute;
  right: 9%;
  bottom: -1px;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 160, 106, 0.42), transparent);
  filter: blur(0.4px);
  pointer-events: none;
  content: "";
}

.service + .service {
  margin-top: clamp(-18px, -1.5vw, -10px);
}

.service h3 {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: 430px;
  color: rgba(248, 249, 248, 0.98);
  font-size: clamp(1.45rem, 2.2vw, 2.6rem);
  line-height: 1.14;
}

.service:nth-child(1) {
  z-index: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.service:nth-child(2) {
  z-index: 2;
  transform: translate3d(0, 10px, 0) scale(0.995);
}

.service:nth-child(3) {
  z-index: 3;
  transform: translate3d(0, 20px, 0) scale(0.99);
}

.service:nth-child(4) {
  z-index: 4;
  transform: translate3d(0, 30px, 0) scale(0.985);
}

.service:nth-child(5) {
  z-index: 5;
  transform: translate3d(0, 40px, 0) scale(0.98);
}

.service:nth-child(6) {
  z-index: 6;
  transform: translate3d(0, 50px, 0) scale(0.975);
}

.service:nth-child(7) {
  z-index: 7;
  transform: translate3d(0, 60px, 0) scale(0.97);
}

.service-copy {
  position: relative;
  z-index: 1;
  gap: clamp(28px, 3.5vw, 58px);
}

.featured-service {
  border-color: rgba(191, 160, 106, 0.34);
  background:
    linear-gradient(145deg, rgba(90, 70, 56, 0.66), rgba(31, 23, 19, 0.6)),
    radial-gradient(circle at 18% 0%, rgba(255, 248, 239, 0.12), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 239, 0.22),
    inset 0 -1px 0 rgba(191, 160, 106, 0.1),
    0 32px 72px rgba(24, 16, 11, 0.34),
    0 0 46px rgba(191, 160, 106, 0.12);
}

.service .copy-panel p,
.service .copy-panel li,
.featured-service h3,
.featured-service .copy-panel p,
.featured-service .copy-panel li {
  color: rgba(255, 248, 239, 0.88);
}

.approach-reveal-wrap {
  position: relative;
  z-index: 30;
  min-height: 360svh;
  margin-top: -100svh;
  overflow: visible;
  background: #160f0b;
  isolation: isolate;
}

.approach-takeover {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 108svh;
  overflow: hidden;
  background: #160f0b;
  color: #fff8ef;
  isolation: isolate;
  box-shadow:
    0 -42px 110px rgba(15, 10, 8, 0.5),
    0 -24px 72px rgba(22, 15, 11, 0.72);
}

.approach-media,
.approach-overlay {
  position: absolute;
  inset: -1px;
}

.approach-media {
  z-index: 0;
}

.approach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.04) brightness(0.78);
  transform: scale(var(--approach-image-scale, 1.04));
  will-change: transform;
}

.approach-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 76% 20%, rgba(191, 160, 106, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(18, 12, 9, 0.9) 0%, rgba(22, 15, 11, 0.76) 42%, rgba(22, 15, 11, 0.24) 100%),
    linear-gradient(0deg, rgba(15, 10, 8, 0.88) 0%, rgba(18, 12, 9, 0.28) 56%, rgba(15, 10, 8, 0.42) 100%);
  pointer-events: none;
}

.approach-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 108svh;
  padding: clamp(108px, 13vh, 168px) clamp(28px, 7vw, 104px);
}

.approach-eyebrow {
  width: fit-content;
  margin: 0 0 clamp(22px, 3vh, 34px);
  padding-top: 0.75em;
  border-top: 1px solid rgba(248, 239, 227, 0.34);
  color: rgba(255, 248, 239, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.approach-takeover h2 {
  max-width: 820px;
  margin: 0;
  color: #fff8ef;
  font-size: clamp(3.5rem, 7.4vw, 8.6rem);
  line-height: 0.92;
  text-shadow: 0 24px 74px rgba(0, 0, 0, 0.48);
}

.approach-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr);
  gap: clamp(34px, 7vw, 96px);
  max-width: 1180px;
  margin-top: clamp(42px, 7vh, 76px);
  padding-top: clamp(28px, 4vh, 42px);
  border-top: 1px solid rgba(248, 239, 227, 0.18);
}

.approach-takeover .copy-panel {
  color: #fff8ef;
}

.approach-takeover .copy-panel p {
  color: rgba(255, 248, 239, 0.83);
  font-size: clamp(0.96rem, 1.02vw, 1.08rem);
  line-height: 1.76;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
}

.approach-takeover .copy-panel.chinese p {
  line-height: 1.92;
}

.approach-takeover .approach-anchor {
  display: block;
  margin-top: 1.25em;
  color: #fff8ef;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.7vw, 3.1rem);
  font-weight: 600;
  line-height: 1;
}

.approach-takeover.is-approach-reveal-ready .approach-content,
.approach-takeover.is-approach-reveal-ready .approach-media img {
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.approach-takeover.is-approach-reveal-ready .approach-content {
  opacity: 1;
  transform: none;
}

.approach-takeover.is-approach-reveal-ready .approach-media img {
  transform: scale(var(--approach-image-scale, 1.04));
}

.approach-takeover.is-approach-visible .approach-content {
  opacity: 1;
  transform: none;
}

.approach-takeover.is-approach-visible .approach-media img {
  opacity: 1;
  transform: scale(var(--approach-image-scale, 1.04));
}

.approach-section {
  max-width: none;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-right: clamp(22px, 4vw, 72px);
  padding-left: clamp(22px, 4vw, 72px);
  background: var(--bg-warm);
  color: var(--text-dark);
}

.approach-section .section-title,
.approach-section .paired,
.approach-section .approach-image {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.approach-section .section-title {
  margin-bottom: clamp(48px, 6vw, 82px);
}

.approach-section.is-approach-reveal-ready .section-title,
.approach-section.is-approach-reveal-ready .paired,
.approach-section.is-approach-reveal-ready .approach-image {
  backface-visibility: hidden;
  opacity: 0;
  transform: translateY(35px);
  will-change: transform, opacity;
}

.approach-section.is-approach-reveal-ready .section-title {
  transition:
    opacity 760ms var(--ease-standard),
    transform 900ms var(--ease-out);
}

.approach-section.is-approach-reveal-ready .paired {
  transition:
    opacity 760ms var(--ease-standard) 150ms,
    transform 900ms var(--ease-out) 150ms;
}

.approach-section.is-approach-reveal-ready .approach-image {
  transition:
    opacity 760ms var(--ease-standard) 300ms,
    transform 900ms var(--ease-out) 300ms;
}

.approach-section.is-approach-visible .section-title,
.approach-section.is-approach-visible .paired {
  opacity: 1;
  transform: translateY(0);
}

.approach-section.is-approach-visible .approach-image {
  opacity: 1;
  transform: translateY(-6px);
}

.is-reveal-settled .section-title,
.is-reveal-settled .paired,
.is-reveal-settled .approach-image,
.is-reveal-settled .split-image,
.is-reveal-settled .split-copy,
.is-reveal-settled .ceo-heading,
.is-reveal-settled .ceo-bio,
.is-reveal-settled .ceo-portrait,
.is-reveal-settled .team-image,
.is-reveal-settled .team-copy,
.is-reveal-settled .contact-shell {
  will-change: auto;
}

.approach-section .section-title span {
  border-color: rgba(43, 33, 28, 0.18);
  color: rgba(43, 33, 28, 0.62);
}

.approach-section h2 {
  color: var(--text-dark);
}

.approach-section h2::after {
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 16px;
  background: var(--accent);
  content: "";
}

.approach-section .paired {
  gap: clamp(42px, 6vw, 92px);
  padding: clamp(32px, 3.2vw, 40px);
  border-radius: 12px;
  background: var(--bg-light);
  box-shadow: 0 10px 30px rgba(43, 33, 28, 0.05);
}

.approach-section .copy-panel {
  max-width: 600px;
}

.approach-section .copy-panel p {
  color: rgba(31, 26, 22, 0.85);
  font-size: clamp(1rem, 1.04vw, 1.08rem);
  line-height: 1.74;
}

.approach-section .copy-panel.chinese p {
  line-height: 1.76;
}

.approach-anchor {
  display: block;
  margin-top: 24px;
  color: rgba(31, 26, 22, 0.96);
  font-size: 1.08em;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.approach-section .approach-image {
  max-width: min(1120px, 100%);
  margin-top: clamp(40px, 5vw, 64px);
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(43, 33, 28, 0.13);
  filter: drop-shadow(0 20px 40px rgba(90, 70, 56, 0.16));
  transform: translateY(-6px);
}

.approach-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) contrast(1.02);
}

.why-aevion-reveal {
  position: relative;
  z-index: 42;
  min-height: 220svh;
  margin-top: -218svh;
  overflow: visible;
  background: transparent;
  color: #fff8ef;
  isolation: isolate;
}

.why-aevion-inner {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: transparent;
}

.why-aevion-image-panel {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background: #120c09;
  opacity: 1;
  -webkit-clip-path: polygon(0 var(--why-image-reveal, 100%), 100% var(--why-image-reveal, 100%), 100% 100%, 0 100%);
  clip-path: polygon(0 var(--why-image-reveal, 100%), 100% var(--why-image-reveal, 100%), 100% 100%, 0 100%);
  transform: translate3d(0, 0, 0);
  will-change: clip-path;
  backface-visibility: hidden;
}

.why-aevion-image-panel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(18, 12, 9, 0.36), transparent 34%, rgba(18, 12, 9, 0.62));
  content: "";
}

.why-aevion-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04) brightness(0.86);
  transform: translate3d(0, var(--why-image-drift, 3svh), 0) scale(var(--why-image-scale, 1.05));
  will-change: transform;
  backface-visibility: hidden;
}

.why-aevion-copy-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100svh;
  min-height: 100svh;
  padding: clamp(78px, 8vw, 126px);
  background:
    radial-gradient(circle at 18% 18%, rgba(191, 160, 106, 0.16), transparent 32%),
    linear-gradient(135deg, #160f0b 0%, #251810 100%);
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% var(--why-copy-reveal, 0%), 0 var(--why-copy-reveal, 0%));
  clip-path: polygon(0 0, 100% 0, 100% var(--why-copy-reveal, 0%), 0 var(--why-copy-reveal, 0%));
  transform: translate3d(0, 0, 0);
  will-change: clip-path;
  backface-visibility: hidden;
}

.why-aevion-copy-panel > * {
  transform: translate3d(0, 0, 0);
}

.why-aevion-copy-panel::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(248, 239, 227, 0.16), transparent);
  content: "";
}

.why-aevion-eyebrow {
  width: fit-content;
  margin: 0 0 clamp(22px, 3vh, 34px);
  padding-top: 0.72em;
  border-top: 1px solid rgba(248, 239, 227, 0.28);
  color: rgba(255, 248, 239, 0.68);
  font-size: 0.78rem;
  line-height: 1.4;
}

.why-aevion-copy-panel h2 {
  max-width: 720px;
  margin: 0;
  color: #fff8ef;
  font-size: clamp(3rem, 5.7vw, 6.7rem);
  line-height: 0.94;
  text-shadow: 0 20px 58px rgba(0, 0, 0, 0.36);
}

.why-aevion-copy {
  display: grid;
  gap: clamp(24px, 3.8vw, 46px);
  max-width: 720px;
  margin-top: clamp(36px, 6vh, 68px);
  padding-top: clamp(28px, 4vh, 40px);
  border-top: 1px solid rgba(248, 239, 227, 0.18);
}

.why-aevion-copy .copy-panel p {
  color: rgba(255, 248, 239, 0.8);
  font-size: clamp(0.96rem, 1.04vw, 1.08rem);
  line-height: 1.76;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.why-aevion-copy .copy-panel.chinese p {
  line-height: 1.9;
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.43fr) minmax(0, 0.57fr);
  gap: clamp(60px, 6vw, 80px);
  max-width: none;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-right: clamp(22px, 5vw, 80px);
  padding-left: clamp(22px, 5vw, 80px);
  background:
    radial-gradient(circle at 18% 14%, rgba(191, 160, 106, 0.15), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(232, 216, 195, 0.1), transparent 28%),
    var(--dark-world);
  color: var(--paper);
  isolation: isolate;
}

.split-section > * {
  position: relative;
  z-index: 1;
}

.split-section::before {
  position: absolute;
  right: 8vw;
  bottom: 12%;
  z-index: 0;
  width: clamp(180px, 19vw, 300px);
  height: clamp(180px, 19vw, 300px);
  border-radius: 999px;
  background: radial-gradient(circle at 35% 28%, rgba(232, 216, 195, 0.28), rgba(191, 160, 106, 0.14) 42%, transparent 72%);
  filter: blur(20px);
  opacity: 0.45;
  pointer-events: none;
  content: "";
}

.split-image {
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    0 14px 34px rgba(112, 84, 52, 0.16);
}

.split-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.03) contrast(1.02) saturate(1.04);
}

.split-copy {
  max-width: 650px;
  padding: 40px 48px;
  border: 1px solid rgba(239, 226, 203, 0.16);
  border-radius: 20px;
  background: rgba(255, 250, 241, 0.055);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 64px rgba(24, 16, 11, 0.28);
}

.split-section.is-why-reveal-ready .split-image,
.split-section.is-why-reveal-ready .split-copy {
  backface-visibility: hidden;
  opacity: 0;
  transform: translateY(35px);
  will-change: transform, opacity;
}

.split-section.is-why-reveal-ready .split-image {
  transition:
    opacity 760ms var(--ease-standard),
    transform 920ms var(--ease-out);
}

.split-section.is-why-reveal-ready .split-copy {
  transition:
    opacity 760ms var(--ease-standard) 150ms,
    transform 920ms var(--ease-out) 150ms;
}

.split-section.is-why-visible .split-image,
.split-section.is-why-visible .split-copy {
  opacity: 1;
  transform: translateY(0);
}

.split-copy .section-title {
  margin-bottom: clamp(24px, 2.8vw, 32px);
}

.split-copy .section-title span {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
}

.split-copy .section-title h2 {
  color: var(--paper);
}

.split-copy .section-title h2::after {
  display: block;
  width: 120px;
  height: 1px;
  margin-top: 24px;
  background: linear-gradient(90deg, transparent, rgba(191, 160, 106, 0.78), transparent);
  content: "";
}

.split-copy .copy-panel p {
  color: rgba(247, 249, 248, 0.82);
  line-height: 1.72;
}

.split-copy .copy-panel.chinese p {
  line-height: 1.76;
}

.stacked {
  grid-template-columns: 1fr;
  gap: 28px;
}

.ceo-section {
  position: relative;
  z-index: 56;
  max-width: none;
  min-height: auto;
  margin-top: 0;
  padding: clamp(92px, 9vw, 138px) clamp(22px, 5vw, 80px);
  overflow: visible;
  background:
    radial-gradient(circle at 14% 10%, rgba(191, 160, 106, 0.12), transparent 30%),
    linear-gradient(145deg, #130d09 0%, #24170f 56%, #160f0b 100%);
  color: #fff8ef;
  isolation: isolate;
}

.ceo-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(320px, 0.4fr);
  grid-template-areas:
    "heading portrait"
    "bio portrait";
  column-gap: clamp(32px, 5vw, 82px);
  row-gap: clamp(12px, 1.5vw, 22px);
  max-width: 1500px;
  min-height: 0;
  margin: 0 auto;
  align-items: start;
  overflow: visible;
  background: transparent;
}

.ceo-heading {
  grid-area: heading;
  min-width: 0;
  padding: 0;
  opacity: 1;
  -webkit-clip-path: none;
  clip-path: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.ceo-heading > * {
  transform: none;
}

.ceo-section .section-title {
  display: block;
  margin-bottom: clamp(18px, 2vw, 28px);
}

.ceo-section .section-title span {
  display: inline-block;
  margin-bottom: clamp(18px, 1.8vw, 24px);
  border-color: rgba(255, 248, 239, 0.28);
  color: rgba(255, 248, 239, 0.68);
}

.ceo-section h2,
.ceo-section .copy-panel p {
  color: rgba(255, 248, 239, 0.82);
}

.ceo-section h2 {
  max-width: none;
  color: #fff8ef;
  font-size: clamp(2.35rem, 3.35vw, 4.65rem);
  line-height: 1.02;
  white-space: nowrap;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.ceo-section h2::after {
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 16px;
  background: var(--accent);
  content: "";
}

.ceo-bio {
  grid-area: bio;
  padding: clamp(20px, 2vw, 30px) 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  -webkit-clip-path: none;
  clip-path: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.ceo-bio > * {
  transform: none;
}

.ceo-section .editorial-pair {
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(22px, 3vw, 42px);
}

.ceo-section .editorial-pair .copy-panel.chinese {
  padding-left: clamp(22px, 3vw, 42px);
  border-left: 1px solid rgba(255, 248, 239, 0.14);
}

.ceo-section .copy-panel p {
  font-size: clamp(0.82rem, 0.86vw, 0.96rem);
  line-height: 1.58;
}

.ceo-section .copy-panel p + p {
  margin-top: 1.05em;
}

.ceo-section .copy-panel.chinese p {
  line-height: 1.76;
}

.name-line {
  margin-bottom: 0;
  padding: 0 0 clamp(18px, 2vw, 26px);
  border-bottom: 1px solid rgba(255, 248, 239, 0.16);
  color: #fff8ef;
  font-size: clamp(1.45rem, 2.5vw, 2.8rem);
  line-height: 1.25;
}

.ceo-portrait {
  grid-area: portrait;
  position: sticky;
  top: clamp(92px, 10svh, 126px);
  align-self: start;
  width: 100%;
  height: clamp(560px, 72svh, 820px);
  max-height: 860px;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 239, 0.14);
  border-radius: clamp(22px, 2vw, 34px);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    0 12px 34px rgba(87, 62, 36, 0.22);
  line-height: 0;
  opacity: 1;
  -webkit-clip-path: none;
  clip-path: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.ceo-portrait::before {
  position: absolute;
  inset: -30%;
  z-index: -1;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 42%, rgba(191, 160, 106, 0.24), rgba(191, 160, 106, 0.085) 36%, transparent 66%),
    radial-gradient(circle at 64% 70%, rgba(128, 103, 72, 0.08), transparent 52%);
  filter: blur(34px);
  opacity: 0.78;
  pointer-events: none;
  content: "";
}

.ceo-portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: inherit;
  rotate: none;
  transform: none;
  image-orientation: from-image;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.04) brightness(0.88);
  transform: scale(1.018);
}

.team-section {
  position: relative;
  max-width: none;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-right: clamp(22px, 4vw, 64px);
  padding-left: clamp(22px, 4vw, 64px);
  background:
    radial-gradient(circle at 14% 12%, rgba(191, 160, 106, 0.12), transparent 30%),
    linear-gradient(145deg, #130d09 0%, #24170f 54%, #160f0b 100%);
  color: #fff8ef;
  isolation: isolate;
}

.team-section::before {
  position: absolute;
  bottom: 12%;
  left: 9vw;
  z-index: 0;
  width: clamp(170px, 18vw, 280px);
  height: clamp(170px, 18vw, 280px);
  border-radius: 999px;
  background: radial-gradient(circle at 35% 28%, rgba(191, 160, 106, 0.16), rgba(87, 62, 36, 0.08) 44%, transparent 72%);
  filter: blur(26px);
  opacity: 0.38;
  pointer-events: none;
  content: "";
}

.team-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.43fr) minmax(0, 0.57fr);
  gap: clamp(60px, 6vw, 80px);
  max-width: 1360px;
  margin-right: auto;
  margin-left: auto;
  align-items: start;
}

.team-image {
  position: sticky;
  top: 120px;
  margin: 0;
  overflow: visible;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  box-shadow:
    0 30px 76px rgba(0, 0, 0, 0.34),
    0 14px 36px rgba(87, 62, 36, 0.18);
}

.team-image::before {
  position: absolute;
  inset: -18%;
  z-index: -1;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 48%, rgba(191, 160, 106, 0.16), rgba(191, 160, 106, 0.05) 38%, transparent 68%);
  filter: blur(30px);
  opacity: 0.72;
  pointer-events: none;
  content: "";
}

.team-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.team-copy {
  padding: clamp(34px, 4vw, 48px);
  border: 1px solid rgba(255, 248, 239, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 16% 16%, rgba(191, 160, 106, 0.1), transparent 34%),
    rgba(22, 15, 11, 0.56);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 239, 0.08),
    0 28px 70px rgba(24, 16, 11, 0.3);
}

.team-section.is-team-reveal-ready .team-image,
.team-section.is-team-reveal-ready .team-copy {
  backface-visibility: hidden;
  opacity: 0;
  transform: translateY(35px);
  will-change: transform, opacity;
}

.team-section.is-team-reveal-ready .team-image {
  transition:
    opacity 760ms var(--ease-standard),
    transform 920ms var(--ease-out);
}

.team-section.is-team-reveal-ready .team-copy {
  transition:
    opacity 760ms var(--ease-standard) 150ms,
    transform 920ms var(--ease-out) 150ms;
}

.team-section.is-team-visible .team-image,
.team-section.is-team-visible .team-copy {
  opacity: 1;
  transform: translateY(0);
}

.team-copy .section-title {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.team-copy .section-title span {
  border-color: rgba(255, 248, 239, 0.24);
  color: rgba(255, 248, 239, 0.68);
}

.team-copy .section-title h2 {
  color: #fff8ef;
}

.team-copy .section-title h2::after {
  display: block;
  width: 120px;
  height: 1px;
  margin-top: 24px;
  background: linear-gradient(90deg, transparent, rgba(191, 160, 106, 0.78), transparent);
  content: "";
}

.team-copy .copy-panel + .copy-panel {
  margin-top: 32px;
}

.team-copy .copy-panel p {
  color: rgba(255, 248, 239, 0.82);
  line-height: 1.72;
}

.team-copy .copy-panel.chinese p {
  line-height: 1.76;
}

.contact-section {
  position: relative;
  max-width: none;
  overflow: hidden;
  padding: clamp(104px, 10vw, 156px) clamp(22px, 4vw, 48px) clamp(78px, 8vw, 118px);
  background:
    linear-gradient(180deg, rgba(43, 33, 28, 0.84), rgba(58, 43, 35, 0.88)),
    linear-gradient(135deg, rgba(191, 160, 106, 0.08), transparent 46%),
    url("Content/Optimized/engage-bg.webp") center / cover;
  isolation: isolate;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 42%, transparent 0%, transparent 48%, rgba(31, 23, 19, 0.36) 100%),
    linear-gradient(90deg, rgba(31, 23, 19, 0.4), transparent 34%, transparent 66%, rgba(31, 23, 19, 0.36));
  pointer-events: none;
  content: "";
}

.contact-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(191, 160, 106, 0.04);
  mix-blend-mode: soft-light;
  pointer-events: none;
  content: "";
}

.contact-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(60px, 7vw, 104px);
  border: 1px solid rgba(238, 242, 244, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 26px 86px rgba(0, 0, 0, 0.2);
  color: var(--paper);
}

.contact-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(43, 33, 28, 0.22), rgba(191, 160, 106, 0.08));
  content: "";
}

.contact-shell::after {
  position: absolute;
  right: 10%;
  bottom: 0;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 160, 106, 0.42), transparent);
  content: "";
}

.contact-shell .section-title span {
  border-color: var(--line-dark);
  color: var(--accent);
}

.contact-shell h2,
.contact-shell .copy-panel p {
  color: rgba(248, 249, 248, 0.86);
}

.contact-shell h2 {
  color: rgba(248, 249, 248, 0.96);
}

.contact-section.is-engage-reveal-ready {
  opacity: 0;
  transition: opacity 900ms var(--ease-standard);
}

.contact-section.is-engage-reveal-ready .contact-shell {
  backface-visibility: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms var(--ease-standard) 180ms,
    transform 920ms var(--ease-out) 180ms;
  will-change: transform, opacity;
}

.contact-section.is-engage-visible {
  opacity: 1;
}

.contact-section.is-engage-visible .contact-shell {
  opacity: 1;
  transform: translateY(0);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  margin-top: clamp(40px, 5vw, 68px);
  padding-top: 34px;
  border-top: 1px solid rgba(238, 242, 244, 0.18);
  color: var(--paper);
}

.contact-links span {
  color: rgba(248, 249, 248, 0.68);
  font-size: 0.92rem;
}

.contact-links a {
  min-height: 50px;
  padding: 0 26px;
  border-color: rgba(191, 160, 106, 0.56);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 42px rgba(0, 0, 0, 0.2);
  color: var(--paper);
}

.contact-links a:hover {
  border-color: rgba(232, 216, 195, 0.86);
  background: rgba(191, 160, 106, 0.18);
}

@media (max-width: 1120px) {
  .header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 18px;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .service {
    position: relative;
    top: auto;
    z-index: auto;
    grid-template-columns: 1fr;
    transform: none !important;
  }

  .service + .service {
    margin-top: 18px;
  }

  .service h3 {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .ceo-section {
    min-height: auto;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    background: #160f0b;
  }

  .section-title,
  .paired,
  .ceo-shell,
  .split-section,
  .feature-cards,
  .who-text-columns,
  .team-shell,
  .visual-pair {
    grid-template-columns: 1fr;
  }

  .ceo-shell {
    display: grid;
    grid-template-areas:
      "heading"
      "portrait"
      "bio";
    min-height: auto;
    background:
      radial-gradient(circle at 22% 12%, rgba(191, 160, 106, 0.14), transparent 34%),
      linear-gradient(145deg, #130d09 0%, #24170f 100%);
  }

  .section-title {
    gap: 16px;
  }

  .section-title span {
    width: fit-content;
    min-width: 180px;
  }

  .feature-cards {
    gap: 34px;
  }

  .who-image {
    justify-self: center;
    width: min(86vw, 420px);
    margin-right: 0;
  }

  .intro-section.is-reveal-ready .who-reveal-image,
  .intro-section.is-reveal-ready .who-reveal-card {
    transform: translate3d(0, 40px, 0);
  }

  .visual-pair img:first-child {
    margin-top: 0;
  }

  .split-image {
    justify-self: stretch;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .ceo-section .editorial-pair {
    grid-template-columns: 1fr;
  }

  .ceo-section .editorial-pair .copy-panel.chinese {
    padding-left: 0;
    border-left: 0;
  }

  .ceo-portrait {
    position: relative;
    top: auto;
    width: 100%;
    height: 520px;
    min-height: 0;
    margin-bottom: 48px;
    opacity: 1;
    transform: none;
  }

  .ceo-heading,
  .ceo-bio {
    opacity: 1;
    transform: none;
  }

  .team-image img {
    height: 100%;
  }

  .team-image {
    position: relative;
    top: auto;
  }
}

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

  .header {
    padding: 18px 16px;
  }

  .brand {
    min-height: 40px;
    max-width: 100%;
    padding: 0 13px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    padding: 6px;
    border-radius: 20px;
  }

  .nav a {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.74rem;
  }

  .hero-content {
    bottom: 92px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .hero-copy {
    margin-top: 0;
  }

  .hero-copy p {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
  }

  .hero-cta,
  .contact-links a {
    width: 100%;
  }

  .hero-cta {
    right: 18px;
    bottom: 24px;
    width: auto;
  }

  .audio-toggle {
    right: 18px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .section,
  .services-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .approach-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .split-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .ceo-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section-title {
    margin-bottom: 38px;
  }

  .service {
    padding: 28px 20px;
  }

  .who-panel {
    padding: 30px 22px;
  }

  .visual-pair img {
    height: 300px;
  }

  .contact-section {
    padding: 16px;
  }

  .split-copy {
    padding: 34px 24px;
  }

  .ceo-portrait {
    height: 460px;
  }

  .team-section {
    padding-top: 120px;
    padding-bottom: 72px;
  }

  .team-copy {
    padding: 34px 24px;
  }

  .team-image img {
    height: 100%;
  }

  .contact-shell {
    padding: 46px 20px;
    border-radius: 22px;
  }
}

@media (max-width: 1024px) {
  .header {
    position: fixed;
    align-items: flex-start;
    flex-direction: row;
    gap: 12px;
    padding: 14px clamp(14px, 3vw, 28px);
  }

  .brand {
    max-width: min(74vw, 520px);
    min-height: 42px;
    overflow: hidden;
    padding: 0 14px;
    font-size: clamp(1rem, 2.6vw, 1.28rem);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    position: fixed;
    top: 18px;
    right: 14px;
    z-index: 32;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(191, 160, 106, 0.48);
    border-radius: 999px;
    background: rgba(43, 33, 28, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
      inset 0 1px 0 rgba(255, 248, 239, 0.12),
      0 14px 34px rgba(31, 23, 19, 0.26);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 17px;
    height: 1px;
    border-radius: 999px;
    background: rgba(255, 248, 239, 0.9);
    transition:
      transform 220ms var(--ease-standard),
      translate 220ms var(--ease-standard);
  }

  .menu-toggle span:first-child {
    translate: 0 -4px;
  }

  .menu-toggle span:last-child {
    translate: 0 4px;
  }

  .header.is-nav-open .menu-toggle span:first-child {
    translate: 0 0;
    transform: rotate(42deg);
  }

  .header.is-nav-open .menu-toggle span:last-child {
    translate: 0 0;
    transform: rotate(-42deg);
  }

  .nav {
    position: fixed;
    top: calc(66px + env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
    left: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    width: min(340px, calc(100vw - 28px - env(safe-area-inset-left) - env(safe-area-inset-right)));
    max-width: calc(100vw - 28px - env(safe-area-inset-left) - env(safe-area-inset-right));
    max-height: min(430px, calc(100svh - 88px - env(safe-area-inset-top)));
    overflow-x: hidden;
    overflow-y: auto;
    padding: 8px;
    border-color: rgba(191, 160, 106, 0.26);
    border-radius: 20px;
    background: rgba(43, 33, 28, 0.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
      inset 0 1px 0 rgba(255, 248, 239, 0.12),
      0 20px 54px rgba(24, 16, 11, 0.34);
    overscroll-behavior: contain;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -6px, 0) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 180ms var(--ease-standard),
      transform 220ms var(--ease-out),
      visibility 180ms var(--ease-standard);
    visibility: hidden;
    z-index: 31;
  }

  .header.is-nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    visibility: visible;
  }

  .nav a {
    justify-content: flex-start;
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.8rem;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
  }

  .hero {
    min-height: 100svh;
    --hero-panel-w: clamp(200px, 26vw, 300px);
    --hero-panel-gap: clamp(22px, 2.8vw, 34px);
    --hero-track-rotation: -8deg;
  }

  .hero-image-field {
    left: -50vw;
    width: 190vw;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(31, 23, 19, 0.7) 0%, rgba(43, 33, 28, 0.22) 34%, rgba(31, 23, 19, 0.82) 100%),
      linear-gradient(90deg, rgba(31, 23, 19, 0.54), rgba(43, 33, 28, 0.14) 52%, rgba(31, 23, 19, 0.42));
  }

  .hero-content {
    bottom: 142px;
    left: clamp(20px, 6vw, 58px);
    width: min(680px, calc(100% - clamp(40px, 12vw, 116px)));
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-copy p {
    max-width: 10.6em;
    font-size: clamp(2.75rem, 8.4vw, 5rem);
    line-height: 1.03;
  }

  .hero-copy span {
    max-width: 29em;
    color: rgba(255, 248, 239, 0.86);
  }

  .hero-cta {
    right: auto;
    bottom: 30px;
    left: clamp(20px, 6vw, 58px);
  }

  .section,
  .intro-light,
  .services-section,
  .approach-section,
  .split-section,
  .ceo-section,
  .team-section {
    padding-right: clamp(22px, 5vw, 48px);
    padding-left: clamp(22px, 5vw, 48px);
  }

  .section,
  .intro-light,
  .services-section {
    padding-top: clamp(92px, 12vw, 132px);
    padding-bottom: clamp(92px, 12vw, 132px);
  }

  .approach-section,
  .split-section,
  .ceo-section,
  .team-section {
    padding-top: clamp(96px, 12vw, 128px);
    padding-bottom: clamp(96px, 12vw, 128px);
  }

  .section-title {
    gap: 20px;
    margin-bottom: clamp(38px, 6vw, 58px);
  }

  .section-title h2 {
    font-size: clamp(2.3rem, 7vw, 4.45rem);
    line-height: 1.02;
  }

  .what-title {
    font-size: clamp(2.55rem, 7vw, 4.4rem);
  }

  .copy-panel p,
  .copy-panel li {
    font-size: 1rem;
    line-height: 1.78;
  }

  .copy-panel.chinese p,
  .copy-panel.chinese li {
    line-height: 1.9;
  }

  .service {
    border-radius: 22px;
    backdrop-filter: blur(8px) saturate(1.02);
    -webkit-backdrop-filter: blur(8px) saturate(1.02);
    box-shadow:
      inset 0 1px 0 rgba(255, 248, 239, 0.16),
      0 18px 42px rgba(24, 16, 11, 0.26);
  }

  .service h3 {
    font-size: clamp(1.65rem, 4.2vw, 2.4rem);
  }

  .service-copy,
  .paired {
    gap: clamp(24px, 5vw, 42px);
  }

  .who-panel,
  .approach-section .paired,
  .ceo-bio,
  .team-copy,
  .split-copy,
  .contact-shell {
    border-radius: 18px;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .header {
    padding: 18px 14px 12px;
  }

  .brand {
    max-width: calc(100vw - 80px);
    min-height: 40px;
    font-size: 1rem;
  }

  .nav {
    top: calc(70px + env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
    left: auto;
    grid-template-columns: 1fr;
    width: min(320px, calc(100vw - 28px - env(safe-area-inset-left) - env(safe-area-inset-right)));
    max-height: min(390px, calc(100svh - 88px - env(safe-area-inset-top)));
  }

  .nav a {
    min-height: 40px;
  }

  .hero {
    height: 100svh;
    min-height: 680px;
    --hero-copy-bottom: calc(140px + env(safe-area-inset-bottom));
    --hero-control-bottom: calc(86px + env(safe-area-inset-bottom));
    --hero-panel-w: clamp(154px, 49.5vw, 204px);
    --hero-panel-gap: 18px;
    --hero-mobile-lane-step: calc(var(--hero-panel-h) + 52px);
    --hero-track-rotation: -9deg;
  }

  .hero-image-field {
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    overflow: hidden;
    transform: none;
    transform-origin: center center;
  }

  .hero-marquee-stage {
    top: 50%;
    left: 50%;
    width: 270vw;
    height: 190svh;
    min-width: 1200px;
    min-height: 1200px;
    transform: translate3d(-50%, -50%, 0) rotate(var(--hero-track-rotation));
  }

  .hero-marquee-lane {
    left: -55vw;
    transform-style: preserve-3d;
  }

  .hero-marquee-lane-top {
    top: calc(50% - (var(--hero-panel-h) / 2) - var(--hero-mobile-lane-step));
  }

  .hero-marquee-lane-middle {
    top: calc(50% - (var(--hero-panel-h) / 2));
  }

  .hero-marquee-lane-bottom {
    top: calc(50% - (var(--hero-panel-h) / 2) + var(--hero-mobile-lane-step));
    left: -115vw;
  }

  .hero-marquee-lane-top .hero-marquee-track,
  .hero-marquee-lane-bottom .hero-marquee-track {
    animation-duration: 76s;
  }

  .hero-marquee-lane-middle .hero-marquee-track {
    animation-duration: 84s;
  }

  .hero-track-panel {
    border-radius: 5px;
    contain: paint;
  }

  .hero-track-panel img {
    visibility: visible;
    opacity: 1;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 72% 18%, rgba(191, 160, 106, 0.12), transparent 32%),
      linear-gradient(180deg, rgba(31, 23, 19, 0.5) 0%, rgba(43, 33, 28, 0.14) 30%, rgba(31, 23, 19, 0.82) 100%),
      linear-gradient(0deg, rgba(31, 23, 19, 0.72) 0%, rgba(31, 23, 19, 0.34) 44%, transparent 68%),
      linear-gradient(90deg, rgba(31, 23, 19, 0.7), rgba(43, 33, 28, 0.18) 58%, rgba(31, 23, 19, 0.42));
  }

  .hero-content {
    top: auto;
    bottom: var(--hero-copy-bottom);
    left: 20px;
    z-index: 6;
    display: block;
    visibility: visible;
    width: calc(100% - 40px);
  }

  .hero-copy {
    opacity: 1;
    visibility: visible;
    transform: none;
    animation: none;
  }

  .hero-copy p {
    max-width: 9.8em;
    overflow-wrap: anywhere;
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.08;
    text-wrap: pretty;
  }

  .hero-copy span {
    max-width: 18em;
    display: block;
    width: min(100%, 18em);
    overflow-wrap: anywhere;
    font-size: clamp(0.92rem, 3.2vw, 1.08rem);
    line-height: 1.48;
  }

  .hero-cta {
    top: auto;
    bottom: calc(24px + env(safe-area-inset-bottom));
    left: 20px;
    min-height: 44px;
    padding: 0 18px;
  }

  .audio-toggle {
    right: 14px;
    bottom: calc(22px + env(safe-area-inset-bottom));
    min-height: 34px;
    background: rgba(43, 33, 28, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .section-title,
  .paired,
  .ceo-shell,
  .split-section,
  .feature-cards,
  .who-text-columns,
  .team-shell,
  .visual-pair {
    grid-template-columns: 1fr;
  }

  .section-title span {
    min-width: 0;
    width: fit-content;
    padding-top: 0.65em;
  }

  .section-title h2,
  .compact-title h2 {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
    line-height: 1.05;
  }

  .paired > .copy-panel + .copy-panel,
  .who-text-columns > .copy-panel + .copy-panel,
  .service-copy > .copy-panel + .copy-panel,
  .team-copy > .copy-panel + .copy-panel {
    padding-top: 24px;
    border-top: 1px solid rgba(43, 33, 28, 0.12);
  }

  .service-copy > .copy-panel + .copy-panel,
  .split-copy .paired > .copy-panel + .copy-panel,
  .team-copy > .copy-panel + .copy-panel,
  .contact-shell .paired > .copy-panel + .copy-panel {
    border-top-color: rgba(255, 248, 239, 0.14);
  }

  .intro-light {
    padding-top: 92px;
    padding-bottom: 94px;
  }

  .feature-cards {
    gap: 30px;
    margin-top: 40px;
  }

  .who-image {
    width: min(100%, 430px);
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .who-panel {
    padding: 30px 22px;
    box-shadow: 0 16px 36px rgba(43, 33, 28, 0.08);
  }

  .intro-section .copy-panel p,
  .copy-panel p {
    line-height: 1.76;
  }

  .intro-section .copy-panel.chinese p,
  .copy-panel.chinese p {
    line-height: 1.88;
  }

  .services-section {
    overflow: hidden;
  }

  .services-section::before,
  .services-section::after {
    opacity: 0.12;
    filter: blur(18px);
  }

  .services-ambient span {
    filter: blur(34px);
    opacity: 0.1;
    animation: none;
  }

  .what-title {
    margin-bottom: 10px;
    font-size: clamp(2.15rem, 9vw, 3.15rem);
  }

  .what-count {
    margin-bottom: 16px;
    font-size: 1rem;
  }

  .services {
    display: grid;
    gap: 22px;
    margin-right: 0;
    margin-left: 0;
    overflow: visible;
    padding: 0 0 clamp(38px, 8vw, 64px);
    perspective: none;
  }

  .services::before {
    display: block;
    margin-bottom: 10px;
  }

  .service {
    position: relative;
    top: auto;
    z-index: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-height: none;
    overflow: visible;
    padding: 30px 22px;
    border-radius: 22px;
    background:
      linear-gradient(145deg, rgba(74, 56, 46, 0.7), rgba(31, 23, 19, 0.64)),
      radial-gradient(circle at 18% 0%, rgba(255, 248, 239, 0.1), transparent 34%);
    transform: none !important;
  }

  .service + .service {
    margin-top: 0;
  }

  .service h3 {
    position: relative;
    top: auto;
    z-index: 1;
    margin: 0;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(191, 160, 106, 0.2);
    background: none;
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .service .copy-panel p,
  .service .copy-panel li {
    line-height: 1.72;
  }

  .service .copy-panel.chinese p,
  .service .copy-panel.chinese li {
    line-height: 1.84;
  }

  .approach-section .paired,
  .ceo-bio,
  .split-copy,
  .team-copy,
  .contact-shell {
    padding: 28px 22px;
  }

  .approach-section .copy-panel {
    max-width: none;
  }

  .approach-section .approach-image,
  .split-image,
  .team-image {
    border-radius: 18px;
  }

  .approach-section .approach-image {
    aspect-ratio: 4 / 3;
  }

  .approach-image img {
    object-position: center;
  }

  .split-section {
    gap: 28px;
  }

  .split-image {
    justify-self: stretch;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .split-copy {
    max-width: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .ceo-shell {
    grid-template-areas:
      "heading"
      "portrait"
      "bio";
    gap: 30px;
  }

  .ceo-heading {
    padding: 76px 20px 0;
  }

  .ceo-bio {
    padding: 0 20px 86px;
  }

  .name-line {
    margin-bottom: 0;
    padding: 18px 0;
    font-size: clamp(1.55rem, 7vw, 2.35rem);
  }

  .ceo-section .editorial-pair {
    grid-template-columns: 1fr;
  }

  .ceo-section .editorial-pair .copy-panel.chinese {
    padding-left: 0;
    border-left: 0;
  }

  .ceo-portrait {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
    margin-bottom: 0;
    overflow: hidden;
  }

  .ceo-portrait img {
    object-position: center top;
  }

  .team-shell {
    gap: 28px;
  }

  .team-image {
    position: relative;
    top: auto;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }

  .team-image img {
    height: 100%;
    object-position: center top;
  }

  .team-copy {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .contact-section {
    padding: 22px;
    background:
      linear-gradient(180deg, rgba(31, 23, 19, 0.9), rgba(58, 43, 35, 0.92)),
      linear-gradient(135deg, rgba(191, 160, 106, 0.1), transparent 46%),
      url("Content/Optimized/engage-bg.webp") center / cover;
  }

  .contact-shell {
    padding: 36px 22px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .contact-links {
    display: grid;
    gap: 14px;
    margin-top: 34px;
    padding-top: 26px;
  }

  .contact-links a {
    width: 100%;
    min-height: 48px;
  }
}

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

  .header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: start;
    gap: 10px;
    padding: 16px 12px 10px;
  }

  .brand {
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.95rem;
  }

  .menu-toggle {
    top: 16px;
    right: 12px;
    justify-self: end;
    width: 40px;
    height: 38px;
    margin-left: 0;
  }

  .nav {
    top: calc(62px + env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    left: auto;
    width: min(292px, calc(100vw - 24px - env(safe-area-inset-left) - env(safe-area-inset-right)));
    max-height: min(360px, calc(100svh - 78px - env(safe-area-inset-top)));
    padding: 8px;
    border-radius: 18px;
  }

  .nav a {
    min-height: 39px;
    font-size: 0.78rem;
  }

  .hero-content {
    top: auto;
    bottom: calc(134px + env(safe-area-inset-bottom));
    left: 18px;
    z-index: 6;
    display: block;
    visibility: visible;
    width: calc(100% - 36px);
  }

  .hero-copy {
    gap: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    animation: none;
  }

  .hero-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(1.78rem, 8vw, 2.24rem);
    line-height: 1.08;
    text-wrap: pretty;
  }

  .hero-copy span {
    max-width: 17em;
    width: min(100%, 17em);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-cta {
    left: 18px;
    top: auto;
    bottom: calc(22px + env(safe-area-inset-bottom));
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.8rem;
  }

  .audio-toggle {
    right: 12px;
    padding: 0 11px;
    font-size: 0.7rem;
  }

  .section,
  .intro-light,
  .services-section,
  .approach-section,
  .split-section,
  .ceo-section,
  .team-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section,
  .intro-light,
  .services-section {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .approach-section,
  .split-section,
  .ceo-section,
  .team-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .section-title span {
    font-size: 0.76rem;
  }

  .section-title h2,
  .compact-title h2 {
    font-size: clamp(1.95rem, 10vw, 2.65rem);
  }

  .copy-panel p,
  .copy-panel li {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .copy-panel.chinese p,
  .copy-panel.chinese li {
    line-height: 1.84;
  }

  .who-image,
  .split-image,
  .approach-section .approach-image {
    aspect-ratio: 4 / 3;
  }

  .who-panel,
  .approach-section .paired,
  .ceo-bio,
  .split-copy,
  .team-copy,
  .contact-shell {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .services {
    gap: 18px;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .service {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .service h3 {
    font-size: clamp(1.32rem, 6.7vw, 1.72rem);
  }

  .ceo-portrait,
  .team-image {
    aspect-ratio: 3 / 4;
  }

  .contact-section {
    padding: 16px;
  }

  .contact-shell {
    padding-bottom: 76px;
  }
}

@media (max-width: 620px) {
  .hero-image-field {
    inset: 0;
    height: 100%;
  }
}

@media (max-width: 1024px) {
  .who-takeover {
    min-height: 112svh;
    margin-top: 72px;
    border-radius: 32px 32px 0 0;
  }

  .who-takeover-content {
    min-height: 112svh;
    padding: clamp(104px, 12vh, 152px) clamp(22px, 5vw, 56px) clamp(82px, 10vh, 122px);
  }

  .who-copy-grid {
    gap: clamp(32px, 5vw, 58px);
  }
}

@media (max-width: 860px) {
  .who-takeover-heading,
  .who-copy-grid {
    grid-template-columns: 1fr;
  }

  .who-takeover-heading {
    gap: 18px;
    margin-bottom: 38px;
  }

  .who-takeover-heading span {
    min-width: 0;
    width: fit-content;
  }

  .who-copy-grid {
    gap: 28px;
    padding-top: 34px;
  }

  .who-copy-grid > .copy-panel + .copy-panel {
    padding-top: 28px;
    border-top: 1px solid rgba(248, 239, 227, 0.18);
  }
}

@media (max-width: 768px) {
  .who-takeover {
    min-height: 100svh;
    margin-top: 64px;
    border-radius: 28px 28px 0 0;
  }

  .who-takeover-media img {
    object-position: center;
    filter: saturate(0.94) contrast(1.05) brightness(0.72);
    transform: scale(1.06);
  }

  .who-takeover-overlay {
    background:
      radial-gradient(circle at 58% 16%, rgba(191, 160, 106, 0.12), transparent 34%),
      linear-gradient(90deg, rgba(18, 12, 9, 0.9) 0%, rgba(24, 16, 12, 0.72) 54%, rgba(24, 16, 12, 0.44) 100%),
      linear-gradient(0deg, rgba(18, 12, 9, 0.94) 0%, rgba(22, 15, 11, 0.62) 50%, rgba(18, 12, 9, 0.68) 100%);
  }

  .who-takeover-content {
    min-height: 100svh;
    padding: 104px 20px 86px;
  }

  .who-takeover-heading {
    margin-bottom: 34px;
  }

  .who-takeover-heading h2 {
    font-size: clamp(2.05rem, 9.8vw, 3.25rem);
    line-height: 1.04;
  }

  .who-copy-grid {
    gap: 26px;
  }
}

@media (max-width: 480px) {
  .who-takeover {
    margin-top: 58px;
    border-radius: 24px 24px 0 0;
  }

  .who-takeover-content {
    padding: 94px 18px 78px;
  }

  .who-takeover-heading h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .who-copy-grid {
    padding-top: 28px;
  }
}

@media (max-width: 1100px) and (min-width: 861px) {
  .services-copy-panel {
    padding-right: 42px;
    padding-left: 34px;
  }

  .services-copy-panel h2 {
    font-size: clamp(3rem, 6.8vw, 5.8rem);
  }

  .service-step-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    max-height: 44svh;
  }

  .service-step .copy-panel p,
  .service-step .copy-panel li {
    font-size: 0.78rem;
  }
}

@media (max-width: 860px) {
  .services-scroll {
    min-height: auto;
    margin-top: -8svh;
    overflow: hidden;
    background:
      radial-gradient(circle at 24% 8%, rgba(191, 160, 106, 0.13), transparent 30%),
      linear-gradient(155deg, #241813 0%, #160f0b 54%, #0f0a08 100%);
  }

  .services-scroll::before {
    background:
      linear-gradient(180deg, rgba(15, 10, 8, 0.74), transparent 24%, rgba(15, 10, 8, 0.36) 68%, rgba(15, 10, 8, 0.84)),
      radial-gradient(circle at 82% 10%, rgba(191, 160, 106, 0.1), transparent 32%);
  }

  .services-scroll::after {
    opacity: 0.46;
  }

  .services-sticky {
    position: relative;
    display: block;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .services-copy-panel {
    height: auto;
    min-height: auto;
    padding: 96px 20px 110px;
    -webkit-clip-path: none;
    clip-path: none;
    transform: none;
  }

  .services-copy-panel > * {
    transform: none;
  }

  .services-image-panel,
  .services-image-stack {
    -webkit-clip-path: none;
    clip-path: none;
    transform: none;
  }

  .services-eyebrow {
    margin-bottom: 22px;
  }

  .services-copy-panel h2 {
    max-width: 8em;
    font-size: clamp(2.55rem, 12vw, 4.05rem);
    line-height: 0.98;
  }

  .services-progress {
    display: none;
  }

  .services-steps {
    position: relative;
    min-height: 0;
    margin-top: 42px;
    border-top: 1px solid rgba(248, 239, 227, 0.2);
  }

  .services-steps::before {
    width: 52%;
  }

  .service-step {
    position: relative;
    inset: auto;
    display: block;
    padding-top: 34px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .service-step + .service-step {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid rgba(248, 239, 227, 0.16);
  }

  .service-step h3 {
    margin-bottom: 24px;
    font-size: clamp(1.55rem, 7.6vw, 2.35rem);
    line-height: 1.1;
  }

  .service-mobile-visual {
    display: flex;
    height: clamp(360px, 72svh, 560px);
    min-height: 0;
    margin: 0 0 28px;
    border: 1px solid rgba(248, 239, 227, 0.13);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

  .service-step[data-step="1"] .service-mobile-visual::before {
    background:
      radial-gradient(circle at 24% 26%, rgba(191, 160, 106, 0.32), transparent 22%),
      linear-gradient(150deg, rgba(97, 70, 48, 0.46), transparent 48%),
      linear-gradient(180deg, rgba(37, 26, 19, 0.34), rgba(15, 10, 8, 0.22));
  }

  .service-step[data-step="2"] .service-mobile-visual::before {
    background:
      radial-gradient(circle at 66% 70%, rgba(168, 137, 82, 0.34), transparent 25%),
      linear-gradient(115deg, rgba(60, 42, 30, 0.6), transparent 52%),
      repeating-linear-gradient(90deg, rgba(255, 248, 239, 0.05) 0 1px, transparent 1px 54px);
  }

  .service-step[data-step="3"] .service-mobile-visual::before {
    background:
      radial-gradient(circle at 42% 34%, rgba(232, 216, 195, 0.18), transparent 18%),
      linear-gradient(145deg, rgba(116, 83, 53, 0.5), transparent 48%),
      linear-gradient(0deg, rgba(15, 10, 8, 0.44), transparent 72%);
  }

  .service-step[data-step="4"] .service-mobile-visual::before {
    background:
      radial-gradient(circle at 72% 28%, rgba(191, 160, 106, 0.2), transparent 18%),
      radial-gradient(circle at 28% 72%, rgba(255, 248, 239, 0.13), transparent 24%),
      linear-gradient(150deg, rgba(59, 44, 35, 0.58), transparent 54%);
  }

  .service-step[data-step="5"] .service-mobile-visual::before {
    background:
      radial-gradient(circle at 30% 24%, rgba(255, 248, 239, 0.16), transparent 24%),
      linear-gradient(125deg, rgba(136, 91, 58, 0.44), transparent 40%),
      linear-gradient(180deg, rgba(43, 33, 28, 0.28), rgba(15, 10, 8, 0.2));
  }

  .service-step[data-step="6"] .service-mobile-visual::before {
    background:
      radial-gradient(circle at 74% 18%, rgba(232, 216, 195, 0.18), transparent 22%),
      linear-gradient(130deg, rgba(84, 62, 48, 0.62), transparent 50%),
      repeating-linear-gradient(0deg, rgba(255, 248, 239, 0.045) 0 1px, transparent 1px 64px);
  }

  .service-mobile-visual span {
    margin: 24px;
    font-size: 0.78rem;
  }

  .services-image-panel {
    display: none;
  }

  .service-step-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .service-step .copy-panel + .copy-panel {
    padding-top: 22px;
    border-top: 1px solid rgba(248, 239, 227, 0.16);
  }

  .service-step .copy-panel p,
  .service-step .copy-panel li {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .service-step .copy-panel.chinese p,
  .service-step .copy-panel.chinese li {
    line-height: 1.86;
  }
}

@media (max-width: 480px) {
  .services-copy-panel {
    padding: 86px 18px 96px;
  }

  .services-copy-panel h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .service-step + .service-step {
    margin-top: 56px;
    padding-top: 56px;
  }

  .service-mobile-visual {
    height: clamp(320px, 64svh, 470px);
    border-radius: 20px;
  }
}

@media (max-width: 1024px) {
  .why-aevion-inner {
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  }

  .why-aevion-copy-panel {
    padding: clamp(76px, 8vw, 104px) clamp(24px, 5vw, 58px);
  }

  .why-aevion-copy-panel h2 {
    font-size: clamp(2.9rem, 6.4vw, 5.2rem);
  }
}

@media (max-width: 860px) {
  .why-aevion-reveal {
    min-height: auto;
    margin-top: 0;
    overflow: hidden;
    background: #160f0b;
  }

  .why-aevion-inner {
    position: relative;
    top: auto;
    display: block;
    height: auto;
    min-height: auto;
  }

  .why-aevion-image-panel {
    height: clamp(340px, 58svh, 520px);
    min-height: clamp(340px, 58svh, 520px);
    opacity: 1;
    -webkit-clip-path: none;
    clip-path: none;
    transform: none;
  }

  .why-aevion-copy-panel {
    height: auto;
    min-height: auto;
    padding: 58px 20px 92px;
    opacity: 1;
    -webkit-clip-path: none;
    clip-path: none;
    transform: none;
  }

  .why-aevion-copy-panel > * {
    transform: none;
  }

  .why-aevion-copy-panel::before {
    top: 0;
    right: 20px;
    bottom: auto;
    left: 20px;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248, 239, 227, 0.18), transparent);
  }

  .why-aevion-copy-panel h2 {
    max-width: 8em;
    font-size: clamp(2.45rem, 12vw, 4rem);
    line-height: 0.98;
  }

  .why-aevion-copy {
    gap: 26px;
    margin-top: 36px;
    padding-top: 30px;
  }

  .why-aevion-copy .copy-panel + .copy-panel {
    padding-top: 26px;
    border-top: 1px solid rgba(248, 239, 227, 0.16);
  }

  .why-aevion-copy .copy-panel p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .why-aevion-copy .copy-panel.chinese p {
    line-height: 1.9;
  }
}

@media (max-width: 480px) {
  .why-aevion-image-panel {
    height: clamp(300px, 50svh, 440px);
    min-height: clamp(300px, 50svh, 440px);
  }

  .why-aevion-copy-panel {
    padding: 48px 18px 82px;
  }

  .why-aevion-copy-panel h2 {
    font-size: clamp(2.28rem, 12vw, 3.35rem);
  }
}

@media (max-width: 1024px) {
  .approach-takeover,
  .approach-content {
    min-height: 104svh;
  }

  .approach-reveal-wrap {
    min-height: 340svh;
    margin-top: -76svh;
  }

  .approach-content {
    padding: clamp(96px, 12vh, 140px) clamp(22px, 5vw, 56px) clamp(82px, 10vh, 120px);
  }

  .approach-copy {
    gap: clamp(28px, 5vw, 56px);
  }
}

@media (max-width: 860px) {
  .approach-takeover,
  .approach-content {
    min-height: auto;
  }

  .approach-reveal-wrap {
    min-height: auto;
    margin-top: 0;
    overflow: hidden;
  }

  .approach-takeover {
    position: relative;
    top: auto;
  }

  .approach-media img {
    object-position: center;
    filter: saturate(0.92) contrast(1.04) brightness(0.66);
    transform: scale(1.07);
  }

  .approach-overlay {
    background:
      radial-gradient(circle at 54% 18%, rgba(191, 160, 106, 0.1), transparent 34%),
      linear-gradient(90deg, rgba(18, 12, 9, 0.9), rgba(18, 12, 9, 0.68)),
      linear-gradient(0deg, rgba(15, 10, 8, 0.96) 0%, rgba(18, 12, 9, 0.72) 54%, rgba(15, 10, 8, 0.64) 100%);
  }

  .approach-content {
    min-height: auto;
    padding: 108px 20px 88px;
  }

  .approach-takeover h2 {
    max-width: 7.8em;
    font-size: clamp(2.6rem, 12vw, 4.3rem);
    line-height: 0.98;
  }

  .approach-copy {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 38px;
    padding-top: 30px;
  }

  .approach-copy > .copy-panel + .copy-panel {
    padding-top: 26px;
    border-top: 1px solid rgba(248, 239, 227, 0.16);
  }

  .approach-takeover .copy-panel p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .approach-takeover .copy-panel.chinese p {
    line-height: 1.9;
  }
}

@media (max-width: 480px) {
  .approach-content {
    padding: 96px 18px 78px;
  }

  .approach-takeover h2 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .approach-takeover .approach-anchor {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }
}

@media (max-width: 860px) {
  .ceo-section {
    min-height: auto;
    margin-top: 0;
    padding: 0;
  }

  .ceo-shell {
    max-width: none;
    margin: 0;
  }

  .ceo-heading,
  .ceo-bio,
  .ceo-portrait {
    -webkit-clip-path: none;
    clip-path: none;
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .ceo-heading > *,
  .ceo-bio > * {
    transform: none;
    will-change: auto;
  }

  .ceo-section h2 {
    max-width: 8.4em;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-image-stack,
  .service-step {
    transition: none;
  }

  .services-copy-panel,
  .services-image-panel,
  .services-image-stack {
    -webkit-clip-path: none;
    clip-path: none;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .services-copy-panel > * {
    transform: none;
    will-change: auto;
  }

  .services-ambient span {
    animation: none;
    will-change: auto;
  }

  .approach-takeover.is-approach-reveal-ready .approach-content,
  .approach-takeover.is-approach-reveal-ready .approach-media img,
  .approach-section.is-approach-reveal-ready .section-title,
  .approach-section.is-approach-reveal-ready .paired {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .approach-takeover,
  .approach-reveal-wrap {
    transform: none;
    will-change: auto;
  }

  .why-aevion-image-panel,
  .why-aevion-copy-panel,
  .why-aevion-image-panel img {
    opacity: 1;
    -webkit-clip-path: none;
    clip-path: none;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .why-aevion-copy-panel > * {
    transform: none;
    will-change: auto;
  }

  .approach-section.is-approach-reveal-ready .approach-image {
    opacity: 1;
    transform: translateY(-6px);
    transition: none;
    will-change: auto;
  }

  .split-section.is-why-reveal-ready .split-image,
  .split-section.is-why-reveal-ready .split-copy {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .team-section.is-team-reveal-ready .team-image,
  .team-section.is-team-reveal-ready .team-copy {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .contact-section.is-engage-reveal-ready,
  .contact-section.is-engage-reveal-ready .contact-shell {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .hero-marquee-track,
  .hero-copy,
  .hero-track-panel img {
    animation: none;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .intro-section.is-reveal-ready .who-reveal-heading,
  .intro-section.is-reveal-ready .who-reveal-image,
  .intro-section.is-reveal-ready .who-reveal-card,
  .who-takeover.is-reveal-ready .who-reveal-heading,
  .who-takeover.is-reveal-ready .who-reveal-card {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}
