/* ══════════════════════════════════════════════
   DESIGN TOKENS · 沉穩黑金
   ══════════════════════════════════════════════ */
:root {
  --black: #0A0A0A;
  --ink: #141414;
  --charcoal: #1A1A1A;
  --graphite: #242424;
  --smoke: #2E2E2E;

  --gold: #C9A876;
  --gold-bright: #D4B78F;
  --gold-deep: #A8875A;
  --gold-glow: rgba(201, 168, 118, 0.15);

  --white: #FFFFFF;
  --pearl: #F5F2ED;
  --mist: #B8B8B8;
  --dust: #7A7A7A;

  --serif: 'Cormorant Garamond', 'Noto Serif TC', Georgia, serif;
  --serif-tc: 'Noto Serif TC', 'Cormorant Garamond', serif;
  --sans: 'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans-tc: 'Noto Sans TC', 'Inter', sans-serif;

  --container: 1280px;
  --gutter: clamp(1.5rem, 4vw, 3rem);
}

/* ══════════════════════════════════════════════
   RESET
   ══════════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--pearl);
  font-family: var(--sans-tc);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { border: 0; background: transparent; cursor: pointer; font-family: inherit; }

/* ══════════════════════════════════════════════
   SHARED
   ══════════════════════════════════════════════ */
.hairline {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
}

.gold { color: var(--gold); }

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.section__eyebrow--center { justify-content: center; }

.section__title {
  font-family: var(--serif-tc);
  font-weight: 500;
  margin: 0 0 3rem;
  line-height: 1.2;
}
.section__title-en {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.section__title-zh {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.15em;
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-family: var(--sans-tc);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(.22,.61,.36,1);
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px var(--gold-glow);
}
.btn--ghost {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--ghost:hover {
  background: var(--gold);
  color: var(--black);
}

.signature__line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-right: 0.75rem;
  vertical-align: middle;
}

/* ══════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(10, 10, 10, 0);
  backdrop-filter: blur(0);
  transition: all 0.4s ease;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 118, 0.1);
}
.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-weight: 500;
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  letter-spacing: 0;
}
.nav__logo-text {
  font-family: var(--serif-tc);
  color: var(--white);
  letter-spacing: 0.1em;
}
.nav__menu {
  display: flex;
  gap: 2.5rem;
  font-family: var(--sans-tc);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  font-weight: 400;
}
.nav__menu a {
  color: var(--mist);
  transition: color 0.3s;
  position: relative;
}
.nav__menu a:hover { color: var(--gold); }
.nav__menu a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav__menu a:hover::after { width: 100%; }
.nav__toggle { display: none; }
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin: 5px 0;
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px circle at 80% 20%, rgba(201, 168, 118, 0.08), transparent 60%),
    radial-gradient(800px circle at 10% 90%, rgba(201, 168, 118, 0.04), transparent 60%),
    var(--black);
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero__name {
  font-family: var(--serif-tc);
  font-weight: 700;
  margin: 0 0 2rem;
  line-height: 1;
}
.hero__name-zh {
  display: block;
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: 0.05em;
  color: var(--white);
  background: linear-gradient(180deg, var(--white) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__name-en {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.hero__titles {
  font-family: var(--sans-tc);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--mist);
  letter-spacing: 0.05em;
  margin: 0 0 2.5rem;
}
.hero__titles p { margin: 0.35rem 0; }
.hero__titles .dot { color: var(--gold); margin: 0 0.5rem; }

.hero__quote {
  font-family: var(--serif-tc);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--pearl);
  line-height: 1.6;
  margin: 0 0 3rem;
  max-width: 32ch;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}
.quote-mark { color: var(--gold); font-family: var(--serif); }

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__right { display: flex; justify-content: center; }
.hero__portrait {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
}
.hero__portrait-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  overflow: hidden;
  background: var(--charcoal);
}
.hero__portrait-frame::before,
.hero__portrait-frame::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
}
.hero__portrait-frame::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; }
.hero__portrait-frame::after { bottom: -8px; right: -8px; border-left: 0; border-top: 0; }
.hero__portrait-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dust);
  font-family: var(--serif);
  font-style: italic;
  background:
    linear-gradient(135deg, var(--graphite) 0%, var(--ink) 100%);
}
.hero__portrait-placeholder span { font-size: 1.5rem; letter-spacing: 0.2em; }
.hero__portrait-placeholder small { margin-top: 0.5rem; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.94) contrast(1.06) saturate(0.9);
}
.hero__portrait-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.badge__number {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
}
.badge__label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.3); transform-origin: top; }
}

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
.about {
  padding: 8rem var(--gutter);
  background: var(--charcoal);
  position: relative;
}
.about__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about__lead {
  font-family: var(--serif-tc);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  color: var(--white);
  line-height: 1.5;
  margin: 0 0 2rem;
  font-weight: 500;
}
.about__body {
  font-size: 1rem;
  color: var(--mist);
  line-height: 1.9;
  margin: 0 0 1.25rem;
}
.about__signature {
  margin-top: 2.5rem;
  color: var(--gold);
  font-family: var(--serif-tc);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.about__visual { position: relative; }
.about__photo-frame {
  aspect-ratio: 4/5;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--graphite) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
}
.about__photo-frame::before {
  content: "";
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(201, 168, 118, 0.2);
}
.about__photo-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dust);
  font-family: var(--serif);
  font-style: italic;
}
.about__photo-placeholder span { font-size: 1.25rem; letter-spacing: 0.2em; }
.about__photo-placeholder small { margin-top: 0.5rem; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.94) contrast(1.06) saturate(0.9);
  position: relative;
  z-index: 1;
}
.about__caption {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.caption__label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.caption__value {
  font-family: var(--serif-tc);
  font-size: 1.1rem;
  color: var(--pearl);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════
   NUMBERS
   ══════════════════════════════════════════════ */
.numbers {
  padding: 8rem var(--gutter);
  background: var(--black);
  position: relative;
}
.numbers::before, .numbers::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.numbers::before { top: 0; }
.numbers::after { bottom: 0; }

.numbers__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 4rem;
}
.numbers__item {
  text-align: center;
}
.numbers__value {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
}
.numbers__plus { font-size: 0.5em; }
.numbers__label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
}
.numbers__desc {
  font-family: var(--sans-tc);
  font-size: 0.9rem;
  color: var(--mist);
  letter-spacing: 0.1em;
}
.numbers__divider {
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--gold-deep), transparent);
}

/* ══════════════════════════════════════════════
   CREDENTIALS
   ══════════════════════════════════════════════ */
.credentials {
  padding: 8rem var(--gutter);
  background: var(--charcoal);
  max-width: var(--container);
  margin: 0 auto;
}
.credentials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.credential {
  padding: 2.5rem 2rem;
  background: var(--ink);
  border: 1px solid rgba(201, 168, 118, 0.2);
  transition: all 0.4s cubic-bezier(.22,.61,.36,1);
  position: relative;
  overflow: hidden;
}
.credential::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(201, 168, 118, 0.05));
  opacity: 0;
  transition: opacity 0.4s;
}
.credential:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.credential:hover::before { opacity: 1; }
.credential__icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.credential__name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.credential__full {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.credential__desc {
  font-size: 0.85rem;
  color: var(--mist);
  line-height: 1.7;
}
.credential--muted { opacity: 0.55; }

/* ══════════════════════════════════════════════
   BELIEF
   ══════════════════════════════════════════════ */
.belief {
  padding: 10rem var(--gutter);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.belief::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 50% 50%, rgba(201, 168, 118, 0.06), transparent 70%);
}
.belief__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.belief__mark {
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 2rem;
  opacity: 0.35;
}
.belief__text {
  font-family: var(--serif-tc);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: var(--pearl);
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0 0 3rem;
}
.belief__signature {
  color: var(--gold);
  font-family: var(--serif-tc);
  font-size: 1rem;
  letter-spacing: 0.2em;
}

/* ══════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════ */
.services {
  padding: 8rem var(--gutter);
  background: var(--charcoal);
  max-width: var(--container);
  margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service {
  padding: 3rem 2.5rem;
  background: var(--ink);
  border: 1px solid rgba(201, 168, 118, 0.15);
  position: relative;
  transition: all 0.4s cubic-bezier(.22,.61,.36,1);
}
.service:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.5);
}
.service__number {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.service__title {
  font-family: var(--serif-tc);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 0.75rem;
  letter-spacing: 0.05em;
}
.service__tagline {
  font-family: var(--serif-tc);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin: 0 0 2rem;
  line-height: 1.5;
}
.service__points li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  color: var(--mist);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(201, 168, 118, 0.08);
  position: relative;
}
.service__points li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 1.1rem;
}
.service__points li:last-child { border-bottom: 0; }

/* ══════════════════════════════════════════════
   JOURNEY
   ══════════════════════════════════════════════ */
.journey {
  padding: 8rem var(--gutter);
  background: var(--black);
  max-width: var(--container);
  margin: 0 auto;
}
.journey__intro {
  font-family: var(--serif-tc);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--mist);
  margin: 0 0 4rem;
  line-height: 1.8;
  max-width: 640px;
}
.journey__timeline {
  position: relative;
  padding-left: 3rem;
}
.journey__line {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-deep), var(--gold), var(--gold-deep));
}
.journey__chapter {
  position: relative;
  padding-bottom: 4rem;
}
.journey__chapter:last-child { padding-bottom: 0; }
.journey__dot {
  position: absolute;
  left: -3rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--black);
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translateX(0.25rem);
}
.journey__dot--now {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 118, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(201, 168, 118, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(201, 168, 118, 0.05); }
}
.journey__year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.journey__title {
  font-family: var(--serif-tc);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 500;
  color: var(--white);
  margin: 0 0 1rem;
  letter-spacing: 0.1em;
}
.journey__body {
  font-size: 1rem;
  color: var(--mist);
  line-height: 1.9;
  margin: 0;
  max-width: 640px;
}
.journey__body em { color: var(--dust); font-style: italic; }

/* ══════════════════════════════════════════════
   PERSONAL STORY (Beyond Numbers)
   ══════════════════════════════════════════════ */
.story {
  padding: 8rem var(--gutter);
  background: var(--black);
  position: relative;
}
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px circle at 20% 40%, rgba(201, 168, 118, 0.05), transparent 60%);
  pointer-events: none;
}
.story__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}
.story__intro {
  font-family: var(--serif-tc);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  color: var(--white);
  line-height: 1.6;
  margin: 0 0 2rem;
  font-weight: 500;
}
.story__body {
  font-size: 1rem;
  color: var(--mist);
  line-height: 1.9;
  margin: 0 0 1.5rem;
}
.story__body em, .story__intro em, .story__caption em {
  color: var(--dust);
  font-style: italic;
}
.story__signature {
  margin-top: 2.5rem;
  color: var(--gold);
  font-family: var(--serif-tc);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  font-style: italic;
}
.story__visual { position: relative; }
.story__photo-frame {
  aspect-ratio: 4/5;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--graphite) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
}
.story__photo-frame::before {
  content: "";
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(201, 168, 118, 0.2);
}
.story__photo-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dust);
  font-family: var(--serif);
  font-style: italic;
}
.story__photo-placeholder span { font-size: 1.25rem; letter-spacing: 0.2em; }
.story__photo-placeholder small { margin-top: 0.5rem; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.story__caption {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* ══════════════════════════════════════════════
   MEDIA
   ══════════════════════════════════════════════ */
.media {
  padding: 8rem var(--gutter);
  background: var(--charcoal);
  max-width: var(--container);
  margin: 0 auto;
}
.media__subheader {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 168, 118, 0.2);
}
.media__subheader--spaced { margin-top: 4.5rem; }
.media__sub-en {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.media__sub-zh {
  font-family: var(--serif-tc);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.15em;
  font-weight: 500;
}
.media__coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.media__coverage-card {
  padding: 1.75rem 1.5rem;
  background: var(--ink);
  border: 1px solid rgba(201, 168, 118, 0.15);
  transition: all 0.3s ease;
}
.media__coverage-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.media__coverage-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.media__coverage-title {
  font-family: var(--serif-tc);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.4;
}
.media__coverage-desc {
  font-size: 0.85rem;
  color: var(--mist);
  line-height: 1.6;
}
.media__coverage-card--muted { opacity: 0.55; }
.media__coverage-title em, .media__coverage-desc em { color: var(--dust); }
.media__list {
  display: flex;
  flex-direction: column;
}
.media__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(201, 168, 118, 0.15);
  transition: padding 0.3s;
}
.media__item:hover { padding-left: 1rem; }
.media__item:last-child { border-bottom: 0; }
.media__year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.media__content h4 {
  font-family: var(--serif-tc);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
}
.media__content p {
  color: var(--mist);
  margin: 0;
  font-size: 0.95rem;
}
.media__item--muted { opacity: 0.5; }

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact {
  padding: 10rem var(--gutter);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at 50% 100%, rgba(201, 168, 118, 0.08), transparent 60%);
}
.contact__container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.contact__title {
  font-family: var(--serif-tc);
  font-weight: 500;
  margin: 0 0 2rem;
  line-height: 1.2;
}
.contact__title-en {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.contact__title-zh {
  display: block;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  letter-spacing: 0.15em;
  color: var(--white);
}
.contact__lead {
  color: var(--mist);
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 0 0 4rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
/* Contact Form */
.contact__form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.contact__field {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.contact__row .contact__field { margin-bottom: 0; }
.contact__label {
  font-family: var(--sans-tc);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.contact__req {
  color: var(--gold-bright);
  margin-left: 0.25rem;
}
.contact__input {
  padding: 0.9rem 1rem;
  background: var(--ink);
  border: 1px solid rgba(201, 168, 118, 0.2);
  color: var(--pearl);
  font-family: var(--sans-tc);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
  outline: none;
}
.contact__input::placeholder {
  color: var(--dust);
}
.contact__input:hover {
  border-color: rgba(201, 168, 118, 0.4);
}
.contact__input:focus {
  border-color: var(--gold);
  background: var(--charcoal);
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.08);
}
.contact__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23C9A876' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.contact__select option {
  background: var(--ink);
  color: var(--pearl);
}
.contact__textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--sans-tc);
  line-height: 1.6;
}
.contact__actions {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contact__submit {
  min-width: 260px;
  justify-content: center;
  font-size: 0.95rem;
  padding: 1.1rem 2rem;
  letter-spacing: 0.2em;
  cursor: pointer;
}
.contact__note {
  font-family: var(--sans-tc);
  font-size: 0.85rem;
  color: var(--mist);
  margin: 0;
  letter-spacing: 0.05em;
}
.contact__result {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid transparent;
  font-family: var(--sans-tc);
  font-size: 0.95rem;
  text-align: center;
  display: none;
  transition: all 0.3s ease;
}
.contact__result.is-success {
  display: block;
  color: var(--gold-bright);
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--ink), rgba(201, 168, 118, 0.08));
}
.contact__result.is-error {
  display: block;
  color: #ff8b8b;
  border-color: rgba(255, 100, 100, 0.35);
  background: rgba(50, 20, 20, 0.4);
}
.contact__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  padding: 3rem var(--gutter);
  background: var(--ink);
  border-top: 1px solid rgba(201, 168, 118, 0.15);
}
.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__logo {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
}
.footer__name {
  font-family: var(--serif-tc);
  color: var(--white);
  letter-spacing: 0.1em;
}
.footer__meta {
  text-align: right;
  font-size: 0.85rem;
  color: var(--dust);
}
.footer__meta p { margin: 0.2rem 0; }
.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold) !important;
  letter-spacing: 0.2em;
}

/* ══════════════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__toggle { display: block; }
  .hero__container { grid-template-columns: 1fr; gap: 3rem; }
  .hero__right { order: -1; }
  .hero__portrait { max-width: 320px; }
  .about__container { grid-template-columns: 1fr; gap: 3rem; }
  .story__container { grid-template-columns: 1fr; gap: 3rem; }
  .contact__row { grid-template-columns: 1fr; gap: 1.25rem; }
  .contact__row .contact__field { margin-bottom: 1.25rem; }
  .numbers__container { grid-template-columns: 1fr; gap: 3rem; }
  .numbers__divider { display: none; }
  .media__item { grid-template-columns: 1fr; gap: 0.5rem; }
  .journey__timeline { padding-left: 2rem; }
  .journey__dot { left: -2rem; }
  .footer__container { flex-direction: column; text-align: center; }
  .footer__meta { text-align: center; }
}

@media (max-width: 640px) {
  .hero { padding: 6rem 1.25rem 3rem; }
  .hero__portrait-badge { bottom: -20px; left: -10px; padding: 0.75rem 1rem; }
  .badge__number { font-size: 2rem; }
  .about, .numbers, .credentials, .belief, .services, .journey, .media, .contact { padding: 5rem 1.25rem; }
}
