@font-face {
  font-family: "CustomNavFont";
  src: url("../../myfont.ttc") format("truetype");
}

:root {
  --bg: #000;
  --panel: #080808;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.58);
  --quiet: rgba(255, 255, 255, 0.32);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #ff5a5a;
  --ease-luxury: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", "PingFang TC", "Microsoft JhengHei", sans-serif;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: #fff;
  color: #000;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(185, 185, 185, 0.78);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition: opacity 0.3s var(--ease-luxury), width 0.35s var(--ease-luxury), height 0.35s var(--ease-luxury), background 0.35s var(--ease-luxury);
  mix-blend-mode: difference;
}

.cursor-dot.is-visible {
  opacity: 1;
}

.cursor-dot.is-pressed {
  width: 38px;
  height: 38px;
  background: rgba(220, 220, 220, 0.72);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.site-header * {
  pointer-events: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  transition: transform 0.8s var(--ease-luxury);
}

.logo:hover {
  transform: translateY(-5px) scale(1.05);
}

.logo img {
  display: block;
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav-link {
  display: inline-block;
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-family: "CustomNavFont", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.nav-link.active,
.nav-link:hover {
  color: #fff;
}

.nav-link:hover {
  transform: translateY(-5px) scale(1.05);
}

.nav-socials {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.nav-social-link:hover {
  color: #fff;
  transform: translateY(-5px) scale(1.08);
}

.nav-social-link svg {
  display: block;
  width: 29px;
  height: 29px;
}

.nav-social-link .icon-vimeo {
  width: 27px;
  height: 27px;
}

.works-dropdown-container {
  position: relative;
  display: inline-block;
}

.works-submenu {
  position: absolute;
  top: 50px;
  left: 0;
  min-width: 178px;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.45s var(--ease-luxury), visibility 0.45s var(--ease-luxury), transform 0.45s var(--ease-luxury);
}

.works-submenu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.works-submenu a {
  position: relative;
  display: grid;
  grid-template-columns: max-content 14px;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: "CustomNavFont", sans-serif;
  font-size: 13px;
  line-height: 1;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury);
}

.works-submenu a::after {
  content: "→";
  justify-self: end;
  color: rgba(255, 255, 255, 0.32);
  transform: translateX(-6px);
  opacity: 0;
  transition: opacity 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury), color 0.6s var(--ease-luxury);
}

.works-submenu a:hover,
.works-submenu a.current-cat {
  color: #fff;
  background: transparent;
  transform: translateX(4px);
}

.works-submenu a:hover::after,
.works-submenu a.current-cat::after {
  opacity: 1;
  color: #fff;
  transform: translateX(0);
}

.hamburger-btn {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hamburger-btn svg {
  width: 32px;
  height: 32px;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.home-hero {
  height: 100vh;
}

.video-background,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-static-brand {
  background:
    radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(140deg, #050505 0%, #000 48%, #101010 100%);
}

.video-background video,
.video-background iframe,
.hero-video video,
.hero-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-background iframe,
.hero-video iframe {
  display: block;
  border: 0;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.16) 36%, rgba(0, 0, 0, 0.74) 100%),
    rgba(0, 0, 0, 0.18);
}

.works-hero .video-overlay {
  background: transparent;
}

.video-background .mobile-video,
.mobile-video {
  display: none;
}

.hero-sound-btn,
.mute-btn {
  position: absolute;
  right: 40px;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: color 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury);
}

.home-hero .hero-sound-btn {
  bottom: 18px;
}

.works-hero .hero-sound-btn {
  bottom: 86px;
}

.hero-sound-btn:hover,
.mute-btn:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.08);
}

.hero-sound-btn svg,
.mute-btn svg {
  width: 28px;
  height: 28px;
}

.hero-sound-btn .icon-sound-on {
  display: none;
}

.hero-sound-btn.is-unmuted .icon-sound-off {
  display: none;
}

.hero-sound-btn.is-unmuted .icon-sound-on {
  display: block;
}

.scroll-down-btn {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 20;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transform: translateX(-50%);
  animation: bounce 2.2s infinite;
  transition: color 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury);
}

.scroll-down-btn:hover {
  color: #fff;
  animation-play-state: paused;
  transform: translateX(-50%) scale(1.12);
}

.scroll-down-btn svg {
  width: 36px;
  height: 36px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-15px) translateX(-50%);
  }
  60% {
    transform: translateY(-7px) translateX(-50%);
  }
}

.site-footer {
  position: absolute;
  bottom: 35px;
  z-index: 20;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 1px;
  text-align: center;
}

.home-statement {
  position: absolute;
  left: 50px;
  bottom: 96px;
  z-index: 2;
  width: min(920px, calc(100% - 100px));
  transform-origin: left bottom;
  transition: opacity 1.2s var(--ease-luxury), transform 1.2s var(--ease-luxury), filter 1.2s var(--ease-luxury);
}

.home-statement.is-softened {
  opacity: 0.2;
  filter: blur(0.2px);
  transform: translateY(10px) scale(0.94);
}

.statement-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "CustomNavFont", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-statement h1 {
  margin: 0;
  font-size: clamp(64px, 11vw, 168px);
  font-weight: 400;
  line-height: 0.82;
}

.home-statement h1 span {
  display: block;
}

.statement-note {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.8;
}

.home-intro,
.page-section {
  padding: 150px 50px;
  background: #000;
}

.home-intro {
  padding: 140px 50px 110px;
}

.home-intro .inner {
  display: block;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.inner {
  width: min(1500px, 100%);
  margin: 0 auto;
}

.editorial-kicker {
  margin: 0 0 28px;
  color: var(--quiet);
  font-family: "CustomNavFont", sans-serif;
  font-size: 15px;
}

.editorial-title {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(48px, 7.8vw, 126px);
  font-weight: 400;
  line-height: 0.96;
}

.editorial-copy {
  max-width: 720px;
  margin: 48px 0 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.home-intro .editorial-title {
  max-width: 1500px;
}

.home-title-lockup {
  max-width: 1500px;
  line-height: 0.9;
}

.home-title-lockup span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.home-title-lockup .title-secondary {
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(20px, 2.65vw, 42px);
  line-height: 1.08;
}

.home-title-lockup .title-primary {
  color: #fff;
  font-size: clamp(70px, 9.1vw, 154px);
  line-height: 0.86;
}

.home-title-lockup .title-secondary + .title-primary {
  margin-top: clamp(26px, 4.8vw, 76px);
}

.home-title-lockup .title-secondary:nth-of-type(even),
.home-title-lockup .title-primary:nth-of-type(even) {
  padding-left: clamp(22px, 5vw, 92px);
}

.works-hero {
  height: 100vh;
  min-height: 620px;
}

.works-hero-title {
  position: absolute;
  left: 50px;
  bottom: 72px;
  z-index: 2;
}

.works-hero-title p {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: "CustomNavFont", sans-serif;
  font-size: 15px;
}

.works-hero-title h1 {
  display: flex;
  align-items: baseline;
  gap: 0.18em;
  flex-wrap: nowrap;
  margin: 0;
  font-size: clamp(56px, 9.2vw, 138px);
  font-weight: 400;
  line-height: 0.9;
  white-space: nowrap;
}

.works-hero-title h1 span {
  display: inline-block;
}

.works-hero-meta {
  position: absolute;
  right: 50px;
  bottom: 64px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "CustomNavFont", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.works-hero-meta span {
  position: relative;
  white-space: nowrap;
}

.works-hero-meta span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
}

.portfolio-section {
  padding: 110px 50px 170px;
  background: #000;
}

.sub-nav {
  width: min(1500px, 100%);
  margin: 0 auto 112px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.sub-nav a {
  position: relative;
  padding: 0 0 14px;
  color: rgba(255, 255, 255, 0.52);
  font-family: "CustomNavFont", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.7s var(--ease-luxury);
}

.sub-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-luxury);
}

.sub-nav a:hover,
.sub-nav a.current-cat {
  color: #fff;
}

.sub-nav a.current-cat::after,
.sub-nav a:hover::after {
  transform: scaleX(1);
}

.grid-container {
  width: min(1500px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 60px;
  row-gap: 150px;
  align-items: start;
  counter-reset: work-card;
}

.card-lg {
  grid-column: span 2;
}

.card-sm {
  grid-column: span 1;
}

.grid-container .work-card {
  grid-column: span 1;
  margin-top: 0;
}

.grid-container .work-card:nth-child(4n+1),
.grid-container .work-card:nth-child(4n) {
  grid-column: span 2;
}

.grid-container .work-card:nth-child(4n+2),
.grid-container .work-card:nth-child(4n+3) {
  grid-column: span 1;
}

.grid-container .work-card:nth-child(4n+2),
.grid-container .work-card:nth-child(4n) {
  margin-top: 120px;
}

.push-down {
  margin-top: 120px;
}

.grid-container .work-card.is-portrait {
  justify-self: center;
  width: min(100%, 420px);
}

.work-card.is-portrait .img-wrapper {
  aspect-ratio: 9 / 16;
}

.work-card {
  counter-increment: work-card;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: start;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  transition: transform 1.05s var(--ease-luxury);
}

.work-card::before {
  content: counter(work-card, decimal-leading-zero);
  display: block;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-family: "CustomNavFont", sans-serif;
  font-size: 13px;
  line-height: 1;
  transition: color 0.7s var(--ease-luxury), border-color 0.7s var(--ease-luxury);
}

.img-wrapper {
  position: relative;
  display: block;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  contain: layout paint;
  transition: box-shadow 0.9s var(--ease-luxury), filter 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}

.img-wrapper img,
.preview-video,
.vimeo-preview-layer,
.vimeo-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.05s var(--ease-luxury);
}

.img-wrapper img {
  display: block;
  z-index: 1;
  transition: opacity 0.55s var(--ease-luxury), transform 1.05s var(--ease-luxury);
}

.img-wrapper.is-previewing img {
  opacity: 0;
}

.preview-video,
.vimeo-preview-layer {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.55s var(--ease-luxury);
}

.vimeo-preview {
  display: block;
  border: 0;
  opacity: 1;
  pointer-events: none;
}

body > .vimeo-floating-preview,
.work-card > .vimeo-preview-layer,
.work-card > .vimeo-preview,
.work-card > iframe[src*="player.vimeo.com"],
.grid-container > iframe[src*="player.vimeo.com"],
.work-info .vimeo-preview-layer,
.work-info .vimeo-preview,
.work-info iframe[src*="player.vimeo.com"] {
  display: none !important;
}

.preview-video.is-playing,
.vimeo-preview-layer.is-playing {
  opacity: 1;
}

.work-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.work-text h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  transition: color 0.7s var(--ease-luxury), letter-spacing 0.7s var(--ease-luxury), transform 0.7s var(--ease-luxury);
}

.work-text p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.6;
}

.arrow-icon {
  color: rgba(255, 255, 255, 0.35);
  font-size: 22px;
  line-height: 1;
  transition: color 0.7s var(--ease-luxury), opacity 0.7s var(--ease-luxury), transform 0.7s var(--ease-luxury);
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}

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

.reveal-ready .work-card.reveal-item {
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}

.home-statement .statement-kicker,
.home-statement h1 span,
.home-statement .statement-note,
.page-hero .editorial-kicker,
.page-hero h1 {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.05s var(--ease-luxury), transform 1.05s var(--ease-luxury);
}

body.page-intro-ready .home-statement .statement-kicker,
body.page-intro-ready .home-statement h1 span,
body.page-intro-ready .home-statement .statement-note,
body.page-intro-ready .page-hero .editorial-kicker,
body.page-intro-ready .page-hero h1 {
  opacity: 1;
  transform: translateY(0);
}

body.page-intro-ready .home-statement h1 span:nth-child(1) {
  transition-delay: 120ms;
}

body.page-intro-ready .home-statement h1 span:nth-child(2) {
  transition-delay: 220ms;
}

body.page-intro-ready .home-statement h1 span:nth-child(3) {
  transition-delay: 320ms;
}

body.page-intro-ready .home-statement .statement-note,
body.page-intro-ready .page-hero h1 {
  transition-delay: 220ms;
}

.works-hero-title p,
.works-hero-title h1 span,
.works-hero-meta span {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.05s var(--ease-luxury), transform 1.05s var(--ease-luxury);
}

body.works-hero-ready .works-hero-title p,
body.works-hero-ready .works-hero-title h1 span,
body.works-hero-ready .works-hero-meta span {
  opacity: 1;
  transform: translateY(0);
}

body.works-hero-ready .works-hero-title h1 span:nth-child(1) {
  transition-delay: 120ms;
}

body.works-hero-ready .works-hero-title h1 span:nth-child(2) {
  transition-delay: 230ms;
}

body.works-hero-ready .works-hero-meta span:nth-child(1) {
  transition-delay: 280ms;
}

body.works-hero-ready .works-hero-meta span:nth-child(2) {
  transition-delay: 360ms;
}

body.works-hero-ready .works-hero-meta span:nth-child(3) {
  transition-delay: 440ms;
}

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button {
    cursor: none;
  }

  .work-card:hover {
    z-index: 5;
    transform: translateY(-14px) scale(1.055);
  }

  .work-card:hover::before {
    border-color: rgba(255, 255, 255, 0.48);
    color: rgba(255, 255, 255, 0.92);
  }

  .work-card:hover .img-wrapper {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.84);
    filter: brightness(0.82) contrast(1.04);
    transform: scale(1.018);
  }

  .work-card:hover .img-wrapper img,
  .work-card:hover .preview-video,
  .work-card:hover .vimeo-preview-layer,
  .work-card:hover .vimeo-preview {
    transform: scale(1.035);
  }

  .work-card:hover .work-text h3 {
    color: #fff;
    letter-spacing: 0.08em;
    transform: translateX(4px);
  }

  .work-card:hover .arrow-icon {
    color: #fff;
    opacity: 1;
  }

  .work-card:hover .arrow-icon {
    transform: translateX(10px);
  }
}

#videoModal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 56px 0;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.96);
}

#videoModal.is-open {
  display: flex;
}

.modal-close {
  position: fixed;
  top: 28px;
  right: 48px;
  z-index: 2001;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 42px;
  line-height: 1;
}

.modal-body {
  width: min(1760px, 94vw);
  margin: auto;
}

.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-container.is-portrait-video {
  width: min(430px, 88vw, calc(78vh * 9 / 16));
  aspect-ratio: 9 / 16;
  margin: 0 auto;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-info {
  padding: 34px 0 60px;
}

.modal-info h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.16;
}

.modal-info h4 {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  font-weight: 400;
}

.modal-credits {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 34px 58px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.72;
  overflow: visible;
}

.modal-credits:empty {
  display: none;
}

.modal-credit-group {
  position: relative;
  flex: 0 1 auto;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding-left: 24px;
  break-inside: avoid;
}

.modal-credit-group::before {
  content: "";
  position: absolute;
  top: 0.36em;
  left: 0;
  width: 1px;
  height: max(1em, calc(var(--credit-lines, 1) * 1.72em - 0.72em));
  background: rgba(255, 255, 255, 0.32);
}

.modal-credit-line {
  display: block;
  white-space: nowrap;
}

.modal-credit-line + .modal-credit-line {
  margin-top: 2px;
}

.page-hero {
  min-height: 72vh;
  padding: 180px 50px 90px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%),
    radial-gradient(circle at 82% 18%, rgba(255, 90, 90, 0.12), transparent 28%),
    #000;
}

.page-hero h1 {
  max-width: 1320px;
  margin: 0;
  font-size: clamp(58px, 10vw, 154px);
  font-weight: 400;
  line-height: 0.9;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  border-top: 1px solid var(--line);
  padding-top: 80px;
}

.section-label {
  margin: 0;
  color: var(--quiet);
  font-family: "CustomNavFont", sans-serif;
  font-size: 15px;
}

.rich-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 25px;
  line-height: 1.78;
}

.rich-copy + .rich-copy {
  margin-top: 34px;
}

.service-list,
.contact-list {
  display: grid;
  gap: 28px;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.contact-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.service-list b,
.contact-row b {
  color: #fff;
  font-weight: 400;
}

.service-list span,
.contact-row span,
.contact-row a {
  color: var(--muted);
  line-height: 1.8;
  text-decoration: none;
}

.contact-row a:hover {
  color: #fff;
}

.contact-note {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 24px;
  line-height: 1.8;
}

.contact-section .contact-note {
  font-size: 18px;
  line-height: 1.82;
}

.contact-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  grid-column: 2;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  margin-top: -44px;
  padding: 0 0 13px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-family: "CustomNavFont", sans-serif;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.65s var(--ease-luxury), transform 0.65s var(--ease-luxury);
}

.contact-cta::before {
  display: none;
}

.contact-cta:hover {
  color: #fff;
}

.contact-cta:hover::before {
  background: rgba(255, 255, 255, 0.86);
}

.contact-form-panel {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 0.9s var(--ease-luxury),
    margin-top 0.9s var(--ease-luxury),
    opacity 0.55s var(--ease-luxury),
    visibility 0s linear 0.9s;
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.85s var(--ease-luxury);
}

.contact-form-panel.is-open {
  grid-template-rows: 1fr;
  margin-top: 68px;
  opacity: 1;
  visibility: visible;
  transition:
    grid-template-rows 0.9s var(--ease-luxury),
    margin-top 0.9s var(--ease-luxury),
    opacity 0.55s var(--ease-luxury),
    visibility 0s;
}

.contact-form-panel.is-open::before {
  transform: scaleX(1);
}

.contact-form-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.project-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 64px;
  max-height: 1800px;
  padding: 62px 0 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-18px);
  transition:
    max-height 0.9s var(--ease-luxury),
    padding 0.9s var(--ease-luxury),
    opacity 0.55s var(--ease-luxury) 0.22s,
    transform 0.75s var(--ease-luxury) 0.22s;
}

.contact-form-panel.is-open .project-form {
  opacity: 1;
  transform: translateY(0);
}

.contact-form-panel.is-submitted .project-form {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-16px);
  transition:
    max-height 0.9s var(--ease-luxury),
    padding 0.9s var(--ease-luxury),
    opacity 0.4s var(--ease-luxury),
    transform 0.55s var(--ease-luxury);
}

.contact-form-success {
  display: grid;
  place-items: center;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    max-height 0.9s var(--ease-luxury),
    padding 0.9s var(--ease-luxury),
    opacity 0.6s var(--ease-luxury) 0.35s,
    transform 0.75s var(--ease-luxury) 0.35s;
}

.contact-form-panel.is-submitted .contact-form-success {
  max-height: 360px;
  padding: 88px 20px 82px;
  opacity: 1;
  transform: translateY(0);
}

.contact-form-success p {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.2;
}

.contact-form-success span {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-family: "CustomNavFont", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.form-field {
  display: grid;
  gap: 12px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > span,
.form-needs legend {
  font-family: "CustomNavFont", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 18px;
  transition: border-color 0.45s var(--ease-luxury), background 0.45s var(--ease-luxury);
}

.form-field input,
.form-field select {
  height: 52px;
  padding: 4px 0 12px;
}

.form-field select {
  color-scheme: dark;
  cursor: pointer;
}

.form-field textarea {
  min-height: 210px;
  padding: 14px 0;
  line-height: 1.7;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.88);
}

.form-needs {
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.form-needs legend {
  margin-bottom: 24px;
  padding: 0;
}

.form-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.form-options label {
  display: block;
  min-width: 0;
  cursor: pointer;
}

.form-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.option-content {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 16px 15px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.55s var(--ease-luxury), border-color 0.55s var(--ease-luxury);
}

.option-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #d4d4d4;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.65s var(--ease-luxury);
}

.option-index {
  color: rgba(255, 255, 255, 0.28);
  font-family: "CustomNavFont", sans-serif;
  font-size: 10px;
  transition: color 0.55s var(--ease-luxury);
}

.option-name {
  min-width: 0;
  font-size: 15px;
  transition: transform 0.55s var(--ease-luxury);
}

.option-mark {
  justify-self: end;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.65s var(--ease-luxury);
}

.form-options label:hover .option-content {
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.form-options label:hover .option-content::before {
  transform: scaleX(0.035);
}

.form-options label:hover .option-name {
  transform: translateX(4px);
}

.form-options input:checked + .option-content {
  border-color: #d4d4d4;
  color: #050505;
}

.form-options input:checked + .option-content::before {
  transform: scaleX(1);
}

.form-options input:checked + .option-content .option-index {
  color: rgba(0, 0, 0, 0.42);
}

.form-options input:checked + .option-content .option-mark {
  transform: rotate(45deg);
}

.form-options input:focus-visible + .option-content {
  outline: 1px solid rgba(255, 255, 255, 0.78);
  outline-offset: 3px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.form-status {
  margin: 0 auto 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: "CustomNavFont", sans-serif;
  font-size: 13px;
}

.form-submit {
  position: relative;
  min-width: 92px;
  min-height: 42px;
  padding: 8px 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: "CustomNavFont", sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.45s var(--ease-luxury), opacity 0.3s ease;
}

.form-submit::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
  transform: scaleX(0.34);
  transform-origin: right center;
  transition: transform 0.55s var(--ease-luxury), background 0.45s var(--ease-luxury);
}

.form-submit:hover {
  color: #fff;
}

.form-submit:hover::after,
.form-submit:focus-visible::after {
  background: #fff;
  transform: scaleX(1);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.55;
}

.contact-cta:focus-visible,
.form-submit:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 5px;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

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

.team-leads {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
  margin-top: 118px;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 100%;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: border-color 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.team-photo {
  position: relative;
  width: min(78%, 360px);
  aspect-ratio: 4 / 5.2;
  margin-top: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    #101010;
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.04) brightness(0.92);
}

.team-photo::before,
.team-photo::after {
  content: none;
}

.team-role {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "CustomNavFont", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
}

.team-card h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 400;
  line-height: 0.98;
  transition: color 0.8s var(--ease-luxury), letter-spacing 0.8s var(--ease-luxury);
}

.team-name-cn,
.team-name-en {
  display: block;
  white-space: nowrap;
}

.team-name-en {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.25vw, 24px);
  line-height: 1.1;
}

.team-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left center;
  opacity: 0.24;
  transition: transform 0.9s var(--ease-luxury), opacity 0.9s var(--ease-luxury);
}

.team-card p:last-child {
  max-width: 310px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 15px;
  line-height: 1.75;
}

.team-roster-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 150px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.team-roster-heading span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
}

.team-roster {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 52px 44px;
  margin-top: 58px;
}

.team-roster .team-card {
  grid-column: span 2;
}

.team-roster .team-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.team-roster .team-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.team-roster .team-photo {
  width: min(70%, 260px);
  aspect-ratio: 4 / 4.8;
  margin-top: 28px;
}

.team-roster .team-card h2 {
  font-size: clamp(24px, 2.1vw, 34px);
}

.team-roster .team-role {
  margin-bottom: 14px;
}

.team-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury);
}

.team-links a::after {
  content: "→";
  color: rgba(255, 255, 255, 0.34);
  transition: color 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury);
}

.team-page {
  background: #f4f1eb;
  color: #111;
}

.team-page .site-header {
  background: linear-gradient(rgba(244, 241, 235, 0.94), rgba(244, 241, 235, 0));
}

.team-page .logo img {
  filter: invert(1) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2));
}

.team-page .hamburger-btn,
.team-page .nav-link,
.team-page .nav-social-link {
  color: rgba(0, 0, 0, 0.62);
}

.team-page .nav-link.active,
.team-page .nav-link:hover,
.team-page .nav-social-link:hover {
  color: #000;
}

.team-page .works-submenu a {
  color: rgba(0, 0, 0, 0.52);
}

.team-page .works-submenu a::after {
  color: rgba(0, 0, 0, 0.32);
}

.team-page .works-submenu a:hover,
.team-page .works-submenu a.current-cat,
.team-page .works-submenu a:hover::after,
.team-page .works-submenu a.current-cat::after {
  color: #000;
}

.team-page .page-hero,
.team-page .page-section {
  background: #f4f1eb;
}

.team-page .page-hero {
  background:
    linear-gradient(180deg, rgba(244, 241, 235, 0.2), #f4f1eb 100%),
    #f4f1eb;
}

.team-page .editorial-kicker,
.team-page .section-label,
.team-page .team-role {
  color: rgba(0, 0, 0, 0.42);
}

.team-page .split-content,
.team-page .team-card,
.team-page .team-roster-heading {
  border-color: rgba(0, 0, 0, 0.16);
}

.team-page .team-section {
  padding-top: 104px;
}

.team-page .team-card {
  border-top: 0;
  color: #111;
}

.team-page .team-card > div:not(.team-photo) {
  width: min(78%, 360px);
  margin: 0 auto;
}

.team-page .team-card h2 {
  color: #111;
}

.team-page .team-name-en {
  color: rgba(0, 0, 0, 0.64);
}

.team-page .team-card p:not(.team-role) {
  max-width: 310px;
  margin: 28px 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

.team-page .contact-note,
.team-page .team-card p:last-child,
.team-page .team-roster-heading span {
  color: rgba(0, 0, 0, 0.62);
}

.team-page .team-photo {
  margin-right: auto;
  margin-left: auto;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.015)),
    #e5dfd5;
}

.team-page .team-photo img {
  filter: saturate(0.9) contrast(1.01) brightness(1.02);
}

.team-page .team-photo::before {
  display: none;
}

.team-page .team-photo::after {
  display: none;
}

.team-page .team-links {
  border-color: rgba(0, 0, 0, 0.12);
}

.team-page .team-roster .team-card > div:not(.team-photo) {
  width: min(70%, 260px);
}

.team-page .team-roster .team-card p:not(.team-role) {
  max-width: 260px;
  margin-top: 18px;
}

.team-page .team-links a,
.team-page .team-links a::after {
  color: rgba(0, 0, 0, 0.58);
}

.team-page .team-links a:hover,
.team-page .team-links a:hover::after {
  color: #000;
}

@media (hover: hover) and (pointer: fine) {
  .team-card:hover {
    border-color: rgba(255, 255, 255, 0.46);
    transform: translateY(-8px);
  }

  .team-card:hover h2 {
    letter-spacing: 0.02em;
  }

  .team-card:hover h2::after {
    transform: scaleX(1);
    opacity: 0.48;
  }

  .team-page .team-card:hover {
    border-color: transparent;
  }

  .team-page .team-card:hover h2 {
    color: #000;
  }

  .team-links a:hover {
    color: #fff;
    transform: translateX(4px);
  }

  .team-links a:hover::after {
    color: #fff;
    transform: translateX(4px);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.78), transparent);
    pointer-events: auto;
  }

  .team-page .site-header {
    background: linear-gradient(rgba(244, 241, 235, 0.94), rgba(244, 241, 235, 0));
  }

  .logo img {
    height: 44px;
  }

  .hamburger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 118px 20px 34px;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transition: opacity 0.45s var(--ease-luxury);
  }

  .team-page .nav-menu {
    background: rgba(244, 241, 235, 0.98);
  }

  .nav-menu:not(.open) * {
    pointer-events: none;
  }

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

  .nav-link {
    font-size: 24px;
  }

  .nav-socials {
    position: absolute;
    right: 8px;
    bottom: max(12px, env(safe-area-inset-bottom));
    align-self: flex-end;
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  .nav-social-link {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.72);
  }

  .nav-social-link svg {
    width: 25px;
    height: 25px;
  }

  .nav-social-link .icon-vimeo {
    width: 22px;
    height: 22px;
  }

  .works-dropdown-container {
    display: flex;
    width: min(100%, 320px);
    flex-direction: column;
    align-items: center;
  }

  .works-submenu {
    position: static;
    display: grid;
    width: min(100%, 172px);
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    counter-reset: none;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.55s var(--ease-luxury), margin 0.55s var(--ease-luxury), padding 0.55s var(--ease-luxury), border-color 0.55s var(--ease-luxury), opacity 0.45s var(--ease-luxury), visibility 0.45s var(--ease-luxury), transform 0.45s var(--ease-luxury);
  }

  .works-dropdown-container.is-mobile-open .works-submenu {
    max-height: 240px;
    margin-top: 18px;
    padding: 8px 0;
    border-color: rgba(255, 255, 255, 0.12);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .team-page .works-dropdown-container.is-mobile-open .works-submenu {
    border-color: rgba(0, 0, 0, 0.14);
  }

  .works-submenu a {
    display: block;
    padding: 11px 0;
    font-size: 15px;
    text-align: center;
    border-bottom: 0;
  }

  .works-submenu a::before,
  .works-submenu a::after {
    display: none;
  }

  .video-background .desktop-video,
  .desktop-video {
    display: none;
  }

  .video-background .mobile-video,
  .mobile-video {
    display: block;
  }

  .works-hero .hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100vw, 177.7778svh);
    height: max(100svh, 56.25vw);
    max-width: none;
    transform: translate(-50%, -50%);
  }

  .hero-sound-btn,
  .mute-btn {
    right: 18px;
    bottom: 44px;
  }

  .home-hero .hero-sound-btn {
    bottom: 18px;
  }

  .works-hero .hero-sound-btn {
    bottom: 44px;
  }

  .home-statement {
    left: 20px;
    right: 20px;
    bottom: 108px;
    width: auto;
  }

  .statement-kicker {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .home-statement h1 {
    font-size: clamp(58px, 19vw, 88px);
    line-height: 0.86;
  }

  .statement-note {
    max-width: 310px;
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.7;
  }

  .home-intro,
  .page-section,
  .portfolio-section {
    padding: 92px 20px;
  }

  .home-intro {
    padding: 92px 20px 76px;
  }

  .home-intro .inner {
    display: block;
    padding-top: 30px;
  }

  .editorial-kicker {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .editorial-title {
    font-size: clamp(44px, 14vw, 70px);
    line-height: 0.96;
  }

  .home-title-lockup {
    max-width: 100%;
    line-height: 0.94;
    text-align: left;
  }

  .home-title-lockup span {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .home-title-lockup .title-secondary {
    font-size: clamp(17px, 5.4vw, 24px);
  }

  .home-title-lockup .title-primary {
    font-size: clamp(38px, 11.2vw, 54px);
  }

  .home-title-lockup .title-secondary + .title-primary {
    margin-top: 26px;
  }

  .home-title-lockup .title-secondary:nth-of-type(even),
  .home-title-lockup .title-primary:nth-of-type(even) {
    padding-left: 0;
  }

  .editorial-copy {
    margin: 34px 0 0;
    font-size: 16px;
  }

  .home-intro .editorial-copy {
    max-width: none;
    margin-top: 34px;
    font-size: 17px;
    line-height: 1.85;
  }

  .works-hero {
    height: 100svh;
    min-height: 0;
  }

  .works-hero-title {
    left: 20px;
    right: 20px;
    bottom: 104px;
  }

  .works-hero-title p {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .works-hero-title h1 {
    font-size: clamp(38px, 10.4vw, 52px);
    line-height: 1;
    white-space: nowrap;
  }

  .works-hero-meta {
    left: 20px;
    right: 20px;
    bottom: 34px;
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 11px;
    text-align: left;
  }

  .works-hero-meta span + span::before {
    display: none;
  }

  .sub-nav {
    width: calc(100% + 40px);
    margin: 0 -20px 56px;
    padding: 18px 20px 10px;
    display: flex;
    flex-wrap: nowrap;
    gap: 26px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .sub-nav::-webkit-scrollbar {
    display: none;
  }

  .sub-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding-bottom: 10px;
    font-size: 19px;
    white-space: nowrap;
  }

  .grid-container {
    grid-template-columns: 1fr;
    row-gap: 64px;
  }

  .grid-container .work-card,
  .grid-container .work-card:nth-child(n) {
    grid-column: span 1;
    margin-top: 0;
  }

  .grid-container .work-card.is-portrait {
    width: min(100%, 320px);
    justify-self: center;
  }

  .card-lg,
  .card-sm {
    grid-column: span 1;
  }

  .push-down {
    margin-top: 0;
  }

  .work-card {
    gap: 14px;
  }

  .work-card::before {
    padding-bottom: 10px;
    font-size: 12px;
  }

  .work-card:hover {
    transform: none;
  }

  .work-text h3 {
    font-size: 18px;
  }

  .page-hero {
    min-height: 68vh;
    padding: 140px 20px 70px;
  }

  .page-hero h1 {
    font-size: clamp(48px, 15vw, 76px);
    line-height: 0.94;
  }

  .split-content,
  .service-list li,
  .contact-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-section .contact-note {
    font-size: 16px;
  }

  .contact-cta {
    grid-column: auto;
    width: max-content;
    max-width: 100%;
    margin-top: 0;
  }

  .contact-form-panel {
    margin-top: 0;
  }

  .contact-form-panel.is-open {
    margin-top: 48px;
  }

  .project-form {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 48px;
  }

  .contact-form-panel.is-submitted .contact-form-success {
    padding: 64px 10px 60px;
  }

  .contact-form-success p {
    font-size: clamp(24px, 7.2vw, 32px);
    white-space: nowrap;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }

  .form-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .option-content {
    grid-template-columns: 20px minmax(0, 1fr) 16px;
    gap: 7px;
    min-height: 60px;
    padding: 14px 9px;
  }

  .option-name {
    font-size: 14px;
  }

  .option-mark {
    font-size: 19px;
  }

  .form-submit-row {
    flex-wrap: wrap;
  }

  .form-submit {
    min-width: 92px;
  }

  .team-section {
    padding-top: 84px;
  }

  .team-leads,
  .team-roster {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .team-leads {
    margin-top: 64px;
  }

  .team-card,
  .team-card-lead,
  .team-roster .team-card {
    min-height: auto;
    display: flex;
    grid-column: auto;
    grid-template-columns: none;
    gap: 22px;
    padding-top: 0;
  }

  .team-roster .team-card:nth-child(4),
  .team-roster .team-card:nth-child(5) {
    grid-column: auto;
  }

  .team-photo {
    width: min(78%, 280px);
    margin-top: 22px;
  }

  .team-roster .team-photo {
    width: min(68%, 230px);
  }

  .team-card h2 {
    font-size: 34px;
  }

  .team-roster-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 76px;
  }

  .team-page .page-hero {
    min-height: 52vh;
    padding-top: 132px;
    padding-bottom: 60px;
  }

  .team-page .page-hero h1 {
    font-size: clamp(46px, 13vw, 62px);
    line-height: 0.96;
  }

  .team-page .split-content {
    gap: 18px;
    padding-top: 34px;
  }

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

  .team-page .team-leads {
    gap: 20px;
    margin-top: 58px;
  }

  .team-page .team-roster {
    gap: 20px;
    margin-top: 44px;
  }

  .team-page .team-leads,
  .team-page .team-roster {
    display: flex;
    grid-template-columns: none;
    margin-right: -20px;
    margin-left: -20px;
    padding: 10px 20px 34px;
    overflow-x: auto;
    overflow-y: visible;
    perspective: 900px;
    scroll-padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .team-page .team-leads::-webkit-scrollbar,
  .team-page .team-roster::-webkit-scrollbar {
    display: none;
  }

  .team-page .team-card,
  .team-page .team-card-lead,
  .team-page .team-roster .team-card {
    flex: 0 0 min(78vw, 318px);
    gap: 18px;
    width: auto;
    margin-right: 0;
    margin-left: 0;
    padding: 18px 0 4px;
    opacity: 0.56;
    scroll-snap-align: center;
    transform: translateY(8px) scale(0.94) rotateY(-4deg);
    transform-origin: center center;
    transition:
      opacity 0.75s var(--ease-luxury),
      transform 0.75s var(--ease-luxury);
  }

  .team-page .team-photo,
  .team-page .team-roster .team-photo {
    width: 82%;
    max-width: 264px;
    margin-top: 24px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0);
    transition: box-shadow 0.75s var(--ease-luxury), transform 0.75s var(--ease-luxury);
  }

  .team-page .team-card > div:not(.team-photo),
  .team-page .team-roster .team-card > div:not(.team-photo) {
    width: 82%;
    max-width: 264px;
  }

  .team-page .team-card h2,
  .team-page .team-roster .team-card h2 {
    font-size: 30px;
    line-height: 1;
  }

  .team-page .team-role {
    margin-bottom: 12px;
  }

  .team-page .team-card p:last-child {
    margin-top: 18px;
    font-size: 14px;
  }

  .team-page .team-card p:not(.team-role),
  .team-page .team-roster .team-card p:not(.team-role) {
    max-width: 100%;
    margin-top: 18px;
    font-size: 14px;
  }

  .team-page .team-roster-heading {
    gap: 12px;
    margin-top: 86px;
    padding-top: 32px;
  }

  .team-page .team-links {
    margin-top: 22px;
  }

  .team-page .team-card.is-carousel-active {
    opacity: 1;
    transform: translateY(-8px) scale(1) rotateY(0deg);
  }

  .team-page .team-card.is-carousel-active .team-photo {
    box-shadow: 0 22px 42px rgba(34, 28, 18, 0.18);
    transform: translateY(-2px);
  }

  .team-page .team-card.is-carousel-active h2::after {
    transform: scaleX(1);
    opacity: 0.42;
  }

  .rich-copy,
  .contact-note {
    font-size: 18px;
    line-height: 1.8;
  }

  .modal-close {
    top: 18px;
    right: 18px;
  }

  .modal-body {
    width: 94vw;
  }
}
