:root {
  --ink: #141817;
  --muted: #5e6866;
  --paper: #eef2ef;
  --paper-deep: #dfe7e4;
  --paper-soft: #f8faf7;
  --line: rgba(20, 24, 23, 0.14);
  --fine-line: rgba(20, 24, 23, 0.08);
  --accent: #4f7774;
  --accent-dark: #294947;
  --graphite: #303838;
  --wood: #9a6a42;
  --white: #fbfcf7;
  --header-height: 72px;
  --font-sans: "Manrope", "PingFang TC", "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-display-tc: "Songti TC", "Noto Serif TC", "Noto Sans TC", serif;
  --display-line-height: 1.06;
  --heading-line-height: 1.12;
  --cjk-heading-line-height: 1.2;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 110;
  top: 12px;
  left: 18px;
  padding: 14px 20px;
  color: var(--white);
  background: var(--accent-dark);
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.motion-toggle {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  right: clamp(18px, 4vw, 56px);
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 24px;
  color: var(--white);
  background: rgba(12,16,13,0.8);
  font: 600 0.75rem var(--font-sans);
  cursor: pointer;
}

.content-notice {
  position: relative;
  z-index: 4;
  margin: calc(var(--header-height) + 16px) 18px 24px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper-soft);
  border: 1px solid var(--accent);
}

.content-notice p { line-height: 1.6; }
.content-notice button { cursor: pointer; font-family: inherit; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 78px, var(--fine-line) 79px, transparent 80px),
    var(--paper);
}

body.is-intro-running {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.page-intro {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: intro-hide 180ms ease 4420ms forwards;
}


.intro-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 18px, rgba(251, 252, 247, 0.045) 19px),
    #0d1111;
}

.intro-panel-left {
  left: 0;
  animation: panel-left-open 1450ms cubic-bezier(0.77, 0, 0.18, 1) 2840ms forwards;
}

.intro-panel-right {
  right: 0;
  animation: panel-right-open 1450ms cubic-bezier(0.77, 0, 0.18, 1) 2840ms forwards;
}

.intro-mark {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(24px, 2.4vw, 36px);
  justify-items: center;
  color: var(--white);
  text-align: center;
  animation: mark-exit 520ms ease 2520ms forwards;
}

.intro-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 9rem);
  line-height: var(--display-line-height);
  opacity: 0;
  transform: translateY(14px);
  animation: mark-enter 780ms cubic-bezier(0.22, 1, 0.36, 1) 160ms forwards;
}

.intro-role {
  display: inline-grid;
  grid-template-columns: minmax(34px, 72px) auto minmax(34px, 72px);
  gap: 16px;
  align-items: center;
  color: #a6c7c2;
  font-size: clamp(0.78rem, 2.5vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: mark-enter 680ms cubic-bezier(0.22, 1, 0.36, 1) 1000ms forwards;
}

.intro-role::before,
.intro-role::after {
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, currentColor);
  transform: scaleX(0);
  animation: line-draw 760ms cubic-bezier(0.77, 0, 0.18, 1) 1180ms forwards;
}

.intro-role::after {
  background: linear-gradient(90deg, currentColor, transparent);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(12, 11, 10, 0.22);
  border-bottom: 1px solid rgba(255, 250, 243, 0.16);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  opacity: 0;
  transform: translateY(-14px);
  animation: header-enter 820ms ease 4120ms forwards;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(238, 242, 239, 0.9);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 0.72rem;
  background: rgba(255, 250, 242, 0.08);
}

.site-nav a,
.button,
.text-link,
.track-action,
.contact-submit {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  margin-left: auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 44px;
  padding: 4px;
  border: 0;
  color: inherit;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: transparent;
  cursor: pointer;
  opacity: 0.8;
}

.language-switch a.is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

html[lang="zh-Hant"] h1,
html[lang="zh-Hant"] h2,
html[lang="zh-Hant"] h3 {
  font-family: var(--font-display-tc);
  font-weight: 500;
  line-height: var(--cjk-heading-line-height);
}

html[lang="zh-Hant"] .hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
}

html[lang="zh-Hant"] .site-nav a,
html[lang="zh-Hant"] .button,
html[lang="zh-Hant"] .text-link,
html[lang="zh-Hant"] .track-action,
html[lang="zh-Hant"] .contact-submit,
html[lang="zh-Hant"] .language-switch a {
  letter-spacing: 0.04em;
  text-transform: none;
}

html[lang="zh-Hant"] .intro-role {
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  margin-left: clamp(18px, 2vw, 30px);
}

.site-nav a {
  position: relative;
  padding: 26px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #11100f;
  --pointer-x: 72%;
  --pointer-y: 38%;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(184, 219, 214, 0.2), transparent 18%),
    radial-gradient(circle at calc(var(--pointer-x) + 9%) calc(var(--pointer-y) + 14%), rgba(251, 252, 247, 0.12), transparent 14%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero.is-pointer-active::after {
  opacity: 1;
}

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

.hero-image {
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.82) contrast(1.06) brightness(0.94);
  transform: scale(1.08);
  animation: image-settle 2100ms cubic-bezier(0.22, 1, 0.36, 1) 3140ms forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 16, 13, 0.98) 0%, rgba(12, 16, 13, 0.93) 37%, rgba(12, 16, 13, 0.5) 48%, rgba(12, 16, 13, 0.1) 76%),
    linear-gradient(0deg, rgba(12, 16, 13, 0.72) 0%, transparent 46%);
}

.hero-video {
  object-position: 52% center;
  filter: saturate(0.9) contrast(1.04) brightness(0.96);
  opacity: 0;
  transition: opacity 280ms ease-out;
}

.hero-video.is-active {
  opacity: 1;
}

.score-field {
  position: absolute;
  z-index: 1;
  inset: auto clamp(18px, 6vw, 88px) 12vh clamp(18px, 7vw, 104px);
  display: none;
  gap: 12px;
  opacity: 0.52;
}

.score-field span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 250, 242, 0.5), rgba(255, 250, 242, 0.08) 58%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  animation: score-draw 900ms cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

.score-field span:nth-child(1) {
  animation-delay: 4080ms;
}

.score-field span:nth-child(2) {
  width: 64%;
  animation-delay: 4170ms;
}

.score-field span:nth-child(3) {
  width: 82%;
  animation-delay: 4260ms;
}

.score-field span:nth-child(4) {
  width: 42%;
  animation-delay: 4350ms;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 104px);
  padding-top: var(--header-height);
  padding-bottom: 88px;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(22px);
  animation: content-rise 780ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content > :nth-child(1) {
  animation-delay: 4020ms;
}

.hero-content > :nth-child(2) {
  animation-delay: 4130ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 4240ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 4350ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 4460ms;
}

.eyebrow,
.section-kicker,
.track-meta {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #a6c7c2;
}

.hero-local-name {
  margin: 0 0 10px;
  color: rgba(251, 252, 247, 0.78);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hero-local-name:empty {
  display: none;
}

html[lang="zh-Hant"] .hero-local-name {
  letter-spacing: 0.08em;
}

html[lang="zh-Hant"] .hero-actions {
  margin-bottom: clamp(24px, 4svh, 42px);
}

html[lang="zh-Hant"] .hero-content {
  padding-top: calc(var(--header-height) + clamp(16px, 2.5svh, 28px));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--display-line-height);
  letter-spacing: 0;
}

h1,
h2,
h3,
.practice-bridge-statement,
.quote-block p,
.contact-panel > a {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  max-width: 9ch;
  margin-bottom: 28px;
  font-size: clamp(4rem, 14vw, 12rem);
}

.hero h1 {
  font-size: clamp(4rem, 12vw, 10.5rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: var(--heading-line-height);
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.hero-copy {
  max-width: 540px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid currentColor;
}

.button-primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 250, 242, 0.05);
}

.button { transition: background 160ms ease, color 160ms ease; }
.button-primary:hover { background: var(--paper-deep); }
.button-secondary:hover { background: rgba(255,255,255,0.18); }
.media-hero .eyebrow { color: #a6c7c2; }

.practice-bridge {
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(0, 2.4fr) minmax(220px, 1fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: start;
  padding: clamp(52px, 8vw, 104px) clamp(18px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 15px, var(--fine-line) 16px),
    var(--paper-deep);
}

.practice-bridge-label {
  padding-top: 9px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.practice-bridge-statement {
  max-width: 28ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: var(--heading-line-height);
}

.practice-bridge-detail {
  max-width: 30ch;
  margin: 0;
  padding-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

html[lang="zh-Hant"] .practice-bridge-label {
  letter-spacing: 0.04em;
  text-transform: none;
}

html[lang="zh-Hant"] .practice-bridge-statement {
  font-family: var(--font-display-tc);
  font-weight: 500;
  line-height: var(--cjk-heading-line-height);
}

.section {
  padding: clamp(70px, 10vw, 136px) clamp(18px, 6vw, 88px);
  scroll-margin-top: var(--header-height);
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-group > div {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-group.is-visible > div:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-group.is-visible > div:nth-child(3) {
  transition-delay: 180ms;
}

.about {
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), var(--fine-line) calc(100% - 1px)),
    var(--paper);
}

.about-grid,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
}

.about-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.about-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 6px;
  color: var(--accent-dark);
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  justify-self: start;
  grid-column: 2;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.text-link {
  color: var(--accent-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  white-space: normal;
  line-height: 1.5;
}

.listen {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 118px, rgba(79, 119, 116, 0.1) 119px, transparent 120px),
    var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: clamp(22px, 4vw, 36px) 0;
  border-bottom: 1px solid var(--line);
}

.track h3 {
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.7vw, 2.45rem);
  font-weight: 400;
  line-height: 1.08;
}

html[lang="zh-Hant"] .track h3 {
  font-family: var(--font-display-tc);
  font-weight: 500;
  line-height: 1.16;
}

.track-meta {
  margin-bottom: 8px;
  color: var(--graphite);
}

.track-note {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.track-action {
  display: grid;
  min-width: 82px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--accent-dark);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.track-action:hover {
  color: var(--white);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.calendar {
  background: var(--paper);
}

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

.event {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.48), transparent 55%),
    var(--paper);
}

.event time {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.press {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 18px, rgba(255, 250, 242, 0.04) 19px),
    var(--ink);
  color: var(--white);
}

.quote-block p {
  max-width: 900px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.25rem, 6vw, 5.9rem);
  line-height: 1.1;
}

html[lang="zh-Hant"] .quote-block p {
  line-height: var(--cjk-heading-line-height);
}

.quote-block cite {
  color: rgba(255, 250, 243, 0.62);
  font-style: normal;
}

.press-links {
  display: grid;
  gap: 12px;
  min-width: 180px;
}

.press-links a,
.socials a {
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact {
  background:
    radial-gradient(circle at 82% 24%, rgba(79, 119, 116, 0.14), transparent 28%),
    var(--paper-deep);
}

.contact h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
}

.contact-panel {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.5);
}

.contact-panel > a {
  overflow-wrap: anywhere;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: var(--heading-line-height);
}

.contact-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-availability {
  max-width: 58ch;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding-top: 8px;
}

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

.contact-field {
  display: grid;
  gap: 9px;
  min-width: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.5;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-field textarea {
  min-height: 164px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(79, 119, 116, 0.16);
}

.contact-submit {
  justify-self: start;
  min-height: 50px;
  padding: 0 24px;
  color: var(--white);
  background: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.contact-form .contact-form-note {
  max-width: 58ch;
  font-size: 0.84rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 88px);
  color: var(--muted);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.subpage .site-header {
  color: var(--ink);
  background: rgba(238, 242, 239, 0.92);
  border-color: var(--line);
  opacity: 1;
  transform: none;
  animation: none;
}

.bio-main {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.bio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(32px, 8vw, 148px);
  align-items: end;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 7vw, 104px) clamp(62px, 9vw, 122px);
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 118px, rgba(79, 119, 116, 0.1) 119px, transparent 120px),
    var(--paper-deep);
}

.bio-intro h1 {
  max-width: 8ch;
  margin-bottom: 0;
  font-size: clamp(4rem, 10vw, 9rem);
}

.bio-intro-copy {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  line-height: 1.6;
}

.bio-copy-section {
  padding: clamp(72px, 10vw, 142px) clamp(18px, 7vw, 104px) clamp(92px, 13vw, 180px);
  background: var(--paper);
}

.bio-copy-section.has-bio-image {
  padding: 0;
  overflow: clip;
}

.bio-copy-layout.has-bio-image {
  display: grid;
  grid-template-columns: minmax(340px, 48vw) minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.bio-portrait {
  position: sticky;
  top: var(--header-height);
  height: calc(100svh - var(--header-height));
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.bio-portrait::after {
  z-index: 2;
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: clamp(110px, 15vw, 240px);
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--paper));
}

.bio-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 500ms ease;
}

.bio-image-second { position: absolute; inset: 0; opacity: 0; }
/* Extend the first image so it can move left even when cover fits its width. */
@media (min-width: 861px) {
  .bio-portrait [data-bio-image] {
    width: calc(100% + clamp(24px, 4vw, 56px));
    max-width: none;
    transform: translateX(calc(-1 * clamp(24px, 4vw, 56px)));
  }
}
.bio-portrait.is-second-image [data-bio-image] { opacity: 0; }
.bio-portrait.is-second-image .bio-image-second { opacity: 1; }
.bio-portrait-inline { display: none; }

.bio-copy-section.has-bio-image .bio-copy {
  width: 100%;
  max-width: 820px;
  margin: 0;
  padding: clamp(72px, 10vw, 142px) clamp(18px, 7vw, 104px) clamp(92px, 13vw, 180px) clamp(42px, 5vw, 84px);
}

.bio-copy {
  max-width: 760px;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.7vw, 1.3rem);
  line-height: 1.82;
}

.bio-copy p {
  margin: 0;
  padding: clamp(28px, 4vw, 46px) 0;
  border-top: 1px solid var(--line);
}

.bio-copy p:last-child {
  border-bottom: 1px solid var(--line);
}

.projects-main,
.project-detail-main {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.projects-intro,
.project-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(32px, 8vw, 148px);
  align-items: end;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 7vw, 104px) clamp(62px, 9vw, 122px);
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 118px, rgba(79, 119, 116, 0.1) 119px, transparent 120px),
    var(--paper-deep);
}

.projects-intro h1,
.project-detail-intro h1 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(4rem, 10vw, 9rem);
}

.project-detail-intro h1 {
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  line-height: 1.08;
}

.projects-intro-copy,
.project-detail-summary {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  line-height: 1.6;
}

.project-index {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(90px, 13vw, 168px);
}

.project-index-list {
  border-top: 1px solid var(--line);
}

.project-index-card {
  display: grid;
  grid-template-columns: minmax(88px, 0.3fr) minmax(0, 1.6fr) auto;
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
  padding: clamp(28px, 4.2vw, 58px) 0;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding-left 180ms ease;
}

.project-index-card:hover,
.project-index-card:focus-visible {
  background: rgba(79, 119, 116, 0.055);
  color: var(--accent-dark);
}

.project-index-card time {
  padding-top: 9px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-index-card h2 {
  max-width: 18ch;
  font-size: clamp(2.5rem, 5.4vw, 5.8rem);
  line-height: 1.08;
}

.project-index-card p {
  max-width: 52ch;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.project-index-arrow {
  padding-top: 10px;
  font-size: 1.5rem;
  line-height: 1;
}

.project-detail-copy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 8vw, 148px);
  align-items: end;
  padding: clamp(72px, 10vw, 142px) clamp(18px, 7vw, 104px) clamp(92px, 13vw, 180px);
  background: var(--paper);
}

.project-detail-copy {
  max-width: 760px;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.7vw, 1.3rem);
  line-height: 1.82;
}

.project-detail-copy p,
.project-copy-group {
  margin: 0;
  padding: clamp(28px, 4vw, 46px) 0;
  border-top: 1px solid var(--line);
}

.project-detail-copy > :last-child {
  border-bottom: 1px solid var(--line);
}

.project-copy-group h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.project-copy-group ul {
  display: grid;
  gap: 0.55em;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-copy-group li {
  padding-left: 1.1em;
  text-indent: -1.1em;
}

.project-copy-group li::before {
  content: "— ";
  color: var(--accent);
}

html[lang="zh-Hant"] .about-link {
  letter-spacing: 0.04em;
  text-transform: none;
}

.media-main {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.media-hero {
  position: relative;
  min-height: min(640px, 68svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.media-hero > img,
.media-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.media-hero > img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) contrast(1.08) brightness(0.72);
}

.media-hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 13, 13, 0.9) 0%, rgba(9, 13, 13, 0.44) 56%, rgba(9, 13, 13, 0.08) 100%),
    linear-gradient(0deg, rgba(9, 13, 13, 0.62) 0%, transparent 56%);
}

.media-hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100% - 36px));
  margin: 0 0 clamp(46px, 8vh, 88px) clamp(18px, 7vw, 104px);
}

.media-hero-content h1 {
  margin-bottom: 16px;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: var(--display-line-height);
}

.media-hero-content > p:last-child {
  max-width: 570px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.6;
}

.media-feature {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 6vw, 88px) clamp(54px, 7vw, 94px);
  border-bottom: 1px solid var(--line);
}

.media-feature .section-header {
  margin-bottom: clamp(30px, 4vw, 52px);
}

.media-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.media-feature-image {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-top: 14px;
  background: var(--graphite);
}

.media-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.media-feature-image:hover img,
.media-feature-image:focus-visible img {
  transform: scale(1.025);
}

.media-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: clamp(28px, 4vw, 58px) 0;
  gap: clamp(10px, 1.2vw, 18px);
}

.media-feature-copy .track-meta {
  margin: 0;
}

.media-feature-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.8vw, 4.75rem);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  overflow-wrap: anywhere;
}

.media-feature-copy .media-credit,
.media-feature-copy .media-description {
  margin: 0;
  overflow-wrap: anywhere;
}

html[lang="zh-Hant"] .media-feature-copy h3 {
  font-family: var(--font-display-tc);
  font-weight: 500;
  line-height: 1.16;
}

html[lang="zh-Hant"] :is(h1, h2, h3).is-latin-title {
  font-family: var(--font-display);
  font-weight: 400;
}

.media-library {
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(84px, 11vw, 152px);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px) clamp(18px, 2.6vw, 36px);
}

.media-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-top: 1px solid var(--line);
}

.media-thumbnail {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-top: 14px;
  background: var(--graphite);
}

.media-thumbnail::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(10, 14, 14, 0.05);
  transition: background 180ms ease;
}

.media-thumbnail::before,
.media-feature-image::before {
  content: "▶";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding-left: 3px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  color: var(--white);
  background: rgba(12,16,13,0.65);
  pointer-events: none;
}

.media-thumbnail:hover::after,
.media-thumbnail:focus-visible::after {
  background: rgba(10, 14, 14, 0.28);
}

.media-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.media-thumbnail:hover img,
.media-thumbnail:focus-visible img {
  transform: scale(1.035);
}

.media-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 228px;
  padding: 22px 0 0;
}

.media-card-body .track-meta {
  margin-bottom: 12px;
}

.media-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.85rem, 2.7vw, 2.45rem);
  line-height: var(--heading-line-height);
}

.media-credit,
.media-description {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.media-credit {
  color: var(--ink);
  font-weight: 700;
}

.media-description {
  margin-top: 8px;
}

.media-watch {
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-watch:hover,
.media-watch:focus-visible {
  color: var(--wood);
}

@keyframes intro-hide {
  to {
    visibility: hidden;
  }
}

@keyframes panel-left-open {
  to {
    transform: translateX(-101%);
  }
}

@keyframes panel-right-open {
  to {
    transform: translateX(101%);
  }
}

@keyframes mark-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mark-exit {
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes line-draw {
  to {
    transform: scaleX(1);
  }
}

@keyframes header-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-settle {
  to {
    transform: scale(1);
  }
}

@keyframes score-draw {
  to {
    transform: scaleX(1);
  }
}

@keyframes content-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .nav-toggle {
    display: block;
  }

  .header-actions {
    gap: 14px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: calc(100dvh - var(--header-height));
    padding: 8px max(18px, env(safe-area-inset-right)) calc(18px + env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    background: rgba(247, 243, 236, 0.96);
    border-bottom: 1px solid var(--line);
    margin-left: 0;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a.is-active { color: var(--accent-dark); border-bottom-color: currentColor; }
  .about-link { grid-column: auto; margin-top: 0; }

  .site-nav a {
    display: flex;
    min-height: 56px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-video {
    object-position: 46% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 16, 13, 0.94) 0%, rgba(12, 16, 13, 0.7) 64%, rgba(12, 16, 13, 0.25) 100%),
      linear-gradient(0deg, rgba(12, 16, 13, 0.78) 0%, transparent 46%);
  }

  .score-field {
    bottom: 7vh;
  }

  .practice-bridge,
  .about-grid,
  .contact,
  .bio-intro,
  .projects-intro,
  .project-detail-intro,
  .events,
  .press {
    grid-template-columns: 1fr;
  }

  .section-header {
    display: grid;
    align-items: start;
  }

  .event {
    min-height: 210px;
  }

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

  .media-feature-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .media-feature-copy {
    min-height: 0;
  }

  .bio-copy {
    margin-left: 0;
  }

  .bio-copy-layout.has-bio-image {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bio-portrait {
    position: relative;
    top: auto;
    width: 100%;
    height: min(72svh, 680px);
  }

  .bio-image-second { display: none; }
  .bio-portrait-inline { display: block; margin: 32px 0; }
  .bio-portrait-inline img { width: 100%; max-height: 70svh; object-fit: cover; }

  .bio-portrait::after {
    top: auto;
    left: 0;
    right: 0;
    bottom: -1px;
    width: auto;
    height: clamp(100px, 24vw, 180px);
    background: linear-gradient(180deg, transparent, var(--paper));
  }

  .bio-copy-section.has-bio-image .bio-copy {
    padding: clamp(52px, 10vw, 88px) clamp(18px, 7vw, 58px) clamp(92px, 13vw, 140px);
  }

  .project-detail-copy-section {
    grid-template-columns: 1fr;
  }

  .project-detail-copy {
    margin-left: 0;
  }
}

@media (max-width: 540px) {
  .brand-text {
    display: none;
  }

  .language-switch a {
    font-size: 0.68rem;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .hero-copy {
    font-size: clamp(1rem, 4.8vw, 1.16rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.7rem, 22vw, 7rem);
  }



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

  .track-action {
    width: 100%;
  }

  .site-footer {
    display: grid;
    padding-bottom: max(28px, calc(18px + env(safe-area-inset-bottom)));
  }

  .media-hero {
    min-height: 60svh;
  }

  .media-hero-content {
    margin-left: 16px;
  }

  .media-hero-content h1 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

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

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

  .media-feature {
    padding-top: 72px;
  }

  .bio-intro {
    padding-top: 84px;
  }

  .bio-intro h1 {
    font-size: clamp(3.8rem, 19vw, 6.4rem);
  }

  .projects-intro,
  .project-detail-intro {
    padding-top: 84px;
  }

  .projects-intro h1,
  .project-detail-intro h1 {
    font-size: clamp(3.8rem, 19vw, 6.4rem);
  }

  .project-detail-intro h1 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .project-index-card {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .project-index-card time {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .project-index-card h2 {
    font-size: clamp(2.65rem, 13vw, 4.6rem);
  }

  .project-detail-copy-section {
    gap: 32px;
  }

  .bio-copy {
    font-size: clamp(1.05rem, 4.8vw, 1.18rem);
    line-height: 1.78;
  }

  .media-feature-copy h3 {
    font-size: clamp(2.5rem, 12vw, 4.25rem);
  }

  .media-card-body {
    min-height: 0;
  }

  .media-watch {
    margin-top: 24px;
  }
}

@media (max-width: 360px) {
  .header-actions {
    gap: 12px;
  }

  .language-switch {
    gap: 6px;
  }

  .hero .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .button {
    min-height: 50px;
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.is-intro-running {
    overflow: auto;
  }

  .page-intro {
    display: none;
  }

  .site-header,
  .hero-image,
  .score-field span,
  .hero-content > *,
  .js-enabled [data-reveal],
  [data-reveal],
  .reveal-group > div {
    opacity: 1;
    transform: none;
  }

  .hero::after {
    display: none;
  }

  .hero-video {
    display: none;
  }
}
