:root {
  --ink: #080808;
  --muted: #6f6f6f;
  --line: #e8e8e8;
  --paper: #ffffff;
  --white: #ffffff;
  --accent: #080808;
  --accent-dark: #080808;
  --gold: #080808;
  --soft: #f5f5f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #ededed;
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.brand span,
.cn-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #3a3a3a;
  font-size: 13px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover {
  background: #fff;
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--ink);
  color: #fff;
}

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

.button.light:hover {
  background: transparent;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
  color: var(--white);
  isolation: isolate;
}

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

.hero::before {
  z-index: -2;
  background: url("assets/images/hero.jpg") center / cover;
  filter: brightness(1.16) contrast(1.02);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.25) 36%, rgba(0, 0, 0, 0.04) 68%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0) 46%);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: #111;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.4vw, 78px);
  font-weight: 860;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(42px, 5.1vw, 64px);
  text-wrap: balance;
}

h2 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 820;
}

h3 {
  font-size: 20px;
  font-weight: 780;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.cn-line {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  font-weight: 680;
}

.section .lead,
.page-intro .lead {
  color: var(--muted);
}

.page-intro .cn-line,
.section .cn-line {
  color: var(--ink);
}

.bilingual {
  display: grid;
  gap: 8px;
}

.bilingual strong {
  display: block;
  font-size: 1.05em;
}

.bilingual span {
  color: var(--muted);
  font-size: 0.95em;
}

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

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.page-intro {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 36px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.media-panel {
  overflow: hidden;
  border-radius: 0;
  background: #f4f4f4;
}

.media-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.card {
  border: 0;
  border-top: 1px solid #111;
  border-radius: 0;
  background: transparent;
  padding: 22px 0 0;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  border: 1px solid #d6d6d6;
  border-radius: 999px;
  background: transparent;
  padding: 7px 11px;
  color: #111;
  font-size: 13px;
  font-weight: 650;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.step {
  border-left: 0;
  border-top: 1px solid #111;
  background: transparent;
  padding: 22px 0 0;
}

.cta-band {
  background: var(--ink);
  color: var(--white);
}

.cta-band .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band .section.contact-direct {
  align-items: flex-end;
}

.cta-band p {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-copy {
  max-width: 720px;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  font-size: clamp(20px, 3.6vw, 38px);
  font-weight: 820;
  line-height: 1.1;
}

.contact-lines a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.contact-lines span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 700;
}

.wechat-card {
  display: grid;
  gap: 12px;
  justify-items: center;
  min-width: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.wechat-card img {
  width: 130px;
  height: 130px;
  background: #fff;
}

.wechat-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.load-more-wrap {
  justify-content: center;
  margin-top: 46px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 0.35fr) minmax(170px, 0.35fr);
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #ececec;
  border-radius: 0;
  background: transparent;
}

.filter-bar.compact {
  grid-template-columns: repeat(2, minmax(180px, 260px));
}

.filter-bar .field {
  gap: 6px;
}

.filter-bar span {
  color: #2f2f2f;
  font-size: 14px;
  font-weight: 740;
}

.talent-card {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.talent-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f4f4f4;
  transition: filter 180ms ease, transform 180ms ease;
}

.talent-card a:hover img {
  filter: grayscale(100%) contrast(1.05);
}

.talent-card .body {
  padding: 14px 0 0;
}

.talent-card .button {
  width: 100%;
}

.meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.profile-photo {
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

.profile-photo img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  cursor: zoom-in;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.fact {
  border: 0;
  border-top: 1px solid #111;
  border-radius: 0;
  background: transparent;
  padding: 14px 0 0;
}

.fact span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.fact strong {
  display: block;
  margin-top: 4px;
}

.profile-note {
  margin-top: 24px;
  border-left: 0;
  border-top: 1px solid #111;
  background: transparent;
  padding: 18px 0 0;
  color: var(--muted);
}

.gallery-grid {
  column-count: 3;
  column-gap: 16px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
  object-fit: contain;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 10, 10, 0.88);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 92vh;
  border-radius: 4px;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  padding: 28px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #2f2f2f;
  font-size: 14px;
  font-weight: 740;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  background: #fff;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.checks {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.checks label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-weight: 520;
}

.checks input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .split,
  .form-wrap,
  .steps,
  .filter-bar,
  .cta-band .section {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    column-count: 2;
  }

  .profile-hero {
    grid-template-columns: 1fr;
  }

  .cta-band .section {
    display: grid;
  }
}

@media (max-width: 620px) {
  .grid,
  .talent-grid,
  .field-grid,
  .profile-facts {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 1;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-inner,
  .section,
  .page-intro,
  .nav,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 56px 0;
  }

  .media-panel img {
    height: 360px;
  }
}
