﻿/* ===== CSS Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
.page { display: none; min-height: 100vh; }
.page.active { display: block; background: #fafafa; }
body { font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif; color: #1a1a2e; background: #fafafa; line-height: 1.7; -webkit-font-smoothing: antialiased; }

/* ===== Container ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== Navbar ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.06); transition: all 0.3s ease; }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: baseline; gap: 6px; }
.logo-mark { font-size: 26px; font-weight: 900; color: #0a1a3e; letter-spacing: 0; }
.logo-sub { font-size: 14px; color: #c9a84c; font-weight: 500; letter-spacing: 2px; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 15px; color: #333; font-weight: 500; transition: color 0.2s; position: relative; padding: 4px 0; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: #c9a84c; transition: width 0.3s; }
.nav-link:hover { color: #c9a84c; }
.nav-link:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #1a1a2e; transition: 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: fixed; top: 72px; left: 0; right: 0; background: rgba(255,255,255,0.98); flex-direction: column; padding: 24px; gap: 20px; transform: translateY(-120%); opacity: 0; transition: all 0.4s ease; pointer-events: none; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
  .nav-menu.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { font-size: 17px; }
}

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: #0a1a3e; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,26,62,0.92) 0%, rgba(10,26,62,0.7) 50%, rgba(10,26,62,0.88) 100%); z-index: 1; }
.hero-bg { position: absolute; inset: 0; background: url('data:image/svg+xml,<svg viewBox="0 0 1200 800" xmlns="http://www.w3.org/2000/svg"><rect fill="%230a1a3e" width="1200" height="800"/><g opacity="0.03"><circle cx="100" cy="100" r="200" fill="%23c9a84c"/><circle cx="900" cy="600" r="300" fill="%23c9a84c"/><circle cx="600" cy="300" r="150" fill="%23ffffff"/></g><line x1="0" y1="700" x2="1200" y2="700" stroke="%23c9a84c" stroke-width="0.5" opacity="0.15"/><line x1="0" y1="600" x2="1200" y2="600" stroke="%23ffffff" stroke-width="0.3" opacity="0.08"/><line x1="0" y1="500" x2="1200" y2="500" stroke="%23ffffff" stroke-width="0.3" opacity="0.06"/></svg>') center/cover; z-index: 0; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; padding: 120px 24px 80px; }
.hero-badge { display: inline-block; padding: 8px 20px; border: 1px solid rgba(201,168,76,0.4); border-radius: 100px; color: #c9a84c; font-size: 13px; letter-spacing: 3px; margin-bottom: 32px; text-transform: uppercase; }
.hero h1 { font-size: clamp(40px, 6.5vw, 72px); color: #fff; font-weight: 900; letter-spacing: 2px; margin-bottom: 20px; }
.hero-sub { font-size: clamp(16px, 2.2vw, 22px); color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 36px; border-radius: 6px; font-size: 15px; font-weight: 600; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: #c9a84c; color: #0a1a3e; }
.btn-primary:hover { background: #d4b85a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #c9a84c; color: #c9a84c; transform: translateY(-2px); }

.hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 2px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-arrow { width: 20px; height: 20px; border-right: 1.5px solid rgba(255,255,255,0.4); border-bottom: 1.5px solid rgba(255,255,255,0.4); transform: rotate(45deg); animation: scrollBounce 2s infinite; }
@keyframes scrollBounce { 0%,100% { transform: rotate(45deg) translateY(0); opacity: 0.4; } 50% { transform: rotate(45deg) translateY(6px); opacity: 1; } }

/* ===== Section Common ===== */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { display: inline-block; font-family: 'Playfair Display', serif; font-size: 13px; letter-spacing: 4px; color: #c9a84c; margin-bottom: 8px; text-transform: uppercase; }
.section-header h2 { font-size: clamp(28px, 3.5vw, 40px); color: #0a1a3e; position: relative; display: inline-block; padding-bottom: 16px; }
.section-header h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: #c9a84c; }
.section-desc { margin-top: 16px; color: #666; font-size: 16px; }

/* ===== About ===== */
.section-about { background: #fafafa; }
.about-showcase-header { margin-bottom: 0; }
.about-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 118px auto 0;
  padding-bottom: 112px;
}
.about-showcase::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, #c9a84c 0%, rgba(201,168,76,0.28) 25%, rgba(201,168,76,0) 100%);
}
.about-story-copy { border-left: 4px solid #c9a84c; padding: 6px 0 6px 28px; }
.about-story-copy p { margin: 0; color: #0a1a3e; font-size: 15px; line-height: 2.35; white-space: nowrap; }
.about-emphasis { color: #c9a84c; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
.about-values span {
  padding: 8px 14px;
  color: #0a1a3e;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 6px;
  text-align: center;
}
.about-values span + span { border-left: 1px solid #dedede; }
.about-office-visual { position: relative; z-index: 0; }
.about-office-visual::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #eee8da;
}
.about-office-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(10,26,62,0.08);
}

@media (max-width: 1100px) {
  .about-showcase { gap: 42px; }
  .about-story-copy p { white-space: normal; }
}

@media (max-width: 900px) {
  .about-showcase { grid-template-columns: 1fr; gap: 52px; margin-top: 72px; padding-bottom: 88px; }
  .about-story { max-width: 720px; margin: 0 auto; }
  .about-office-visual { width: calc(100% - 18px); max-width: 720px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .about-showcase { margin-top: 52px; padding-bottom: 64px; }
  .about-story-copy { padding-left: 18px; }
  .about-story-copy p { font-size: 14px; line-height: 2; }
  .about-values { margin-top: 30px; }
  .about-values span { padding: 8px 6px; font-size: 18px; letter-spacing: 3px; }
  .about-office-visual { width: calc(100% - 10px); }
  .about-office-visual::after { right: -10px; bottom: -10px; }
}

/* ===== Practices ===== */
.section-practices { background: #f5f5f7; }
.practices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.practice-card { background: #fff; border-radius: 8px; padding: 28px 24px; transition: all 0.3s ease; cursor: pointer; border: 1px solid #eee; }
.practice-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: #c9a84c; }
.practice-card .card-icon { width: 48px; height: 48px; background: #f5f0e6; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #c9a84c; }
.practice-card h3 { font-size: 17px; margin-bottom: 10px; color: #0a1a3e; }
.practice-card p { font-size: 14px; color: #666; line-height: 1.8; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.practice-card .card-toggle { display: inline-block; margin-top: 12px; color: #c9a84c; font-size: 13px; font-weight: 600; transition: 0.2s; }
.practice-card .card-toggle:hover { gap: 8px; }
.practice-card.expanded p { -webkit-line-clamp: unset; }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 900px; margin: 0 auto; }
.team-card { background: #f5f0e6; border-radius: 12px; overflow: hidden; border: 1px solid #e8e0d0; transition: all 0.3s; }
.team-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); transform: translateY(-3px); }
.team-card-inner { padding: 56px 32px; text-align: center; }
.team-photo { width: 280px; height: auto; border-radius: 0; overflow: hidden; margin: 0 auto 32px; }
.team-photo img { width: 100%; height: auto; display: block; }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, #0a1a3e, #1e3a6e); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: #c9a84c; font-size: 28px; font-weight: 900; overflow: hidden; }
.team-info { }
.team-card h3 { font-size: 24px; color: #0a1a3e; text-align: center; margin-bottom: 10px; }
.team-name-en { font-size: 14px; color: #999; font-weight: 400; margin-bottom: 4px; }
.team-title { font-size: 19px; color: #c9a84c; font-weight: 500; margin-bottom: 8px; text-align: center; }
.team-edu { font-size: 13px; color: #888; margin-bottom: 4px; }
.team-focus { font-size: 13px; color: #666; margin-bottom: 16px; }
.team-lang { font-size: 12px; color: #aaa; margin-bottom: 12px; }
.team-card .team-bio { font-size: 14px; color: #555; line-height: 1.9; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.team-card .bio-more { display: inline-block; margin-top: 8px; color: #c9a84c; font-size: 13px; font-weight: 600; cursor: pointer; }
.team-card.expanded .team-bio { -webkit-line-clamp: unset; }

/* ===== Insights ===== */
.section-insights { background: #f5f5f7; }
.insights-news { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.news-card { display: block; text-decoration: none; color: inherit; background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #eee; transition: all 0.3s; }
.news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.news-image { width: 100%; height: auto; overflow: hidden; }
.news-image img { width: 100%; height: auto; display: block; }
.news-body { padding: 14px 12px; }
.news-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 6px; }
.news-date { font-size: 11px; color: #999; }
.news-tag { font-size: 10px; padding: 1px 6px; background: #f5f0e0; color: #c9a84c; border-radius: 4px; font-weight: 500; }
.news-body h3 { font-size: 14px; color: #0a1a3e; margin-bottom: 6px; }
.news-body p { font-size: 12px; color: #666; line-height: 1.5; }

@media (max-width: 768px) {
  .insights-news { grid-template-columns: repeat(2, 1fr); }
}
.insights-placeholder { text-align: center; padding: 80px 24px; max-width: 500px; margin: 0 auto; }
.placeholder-icon { color: #ccc; margin-bottom: 20px; }
.insights-placeholder h3 { font-size: 22px; color: #666; margin-bottom: 12px; }
.insights-placeholder p { color: #999; font-size: 15px; line-height: 1.8; }

/* ===== Contact ===== */
.section-contact { background: #f5f5f7; min-height: calc(100vh - 72px); }
.contact-wrapper { max-width: 800px; margin: 0 auto; }
.contact-info { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.contact-card { background: #fff; padding: 32px 24px; border-radius: 8px; text-align: center; border: 1px solid #eee; transition: 0.3s; }
.contact-card:hover { border-color: #c9a84c; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.contact-icon { width: 48px; height: 48px; margin: 0 auto 16px; background: #f5f0e6; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #c9a84c; }
.contact-card h4 { font-size: 16px; color: #0a1a3e; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: #555; }
.contact-note { font-size: 12px !important; color: #999 !important; margin-top: 4px; }
.contact-link { color: #c9a84c; font-weight: 500; }
.contact-link:hover { text-decoration: underline; }

/* ===== Contact Page ===== */
.contact-page { min-height: 100vh; padding-bottom: 72px; background: #fafafa; }
.contact-page-hero { margin-top: 0; padding: 80px 0 24px; text-align: center; background: transparent; }
.contact-page-title { display: flex; align-items: baseline; justify-content: center; }
.contact-page-eyebrow { display: inline-block; margin-right: 12px; color: #c9a84c; font-family: 'Playfair Display', serif; font-size: 13px; letter-spacing: 4px; text-transform: uppercase; }
.contact-page-hero h2 { position: relative; display: inline-block; padding-bottom: 16px; color: #0a1a3e; font-size: clamp(28px, 3.5vw, 40px); }
.contact-page-hero h2::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 60px; height: 3px; background: #c9a84c; transform: translateX(-50%); }
.contact-page-hero p { margin-top: 16px; color: #666; font-size: 16px; }
.contact-page-content { padding-top: 24px; }
.contact-page-grid { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr); align-items: center; gap: 70px; max-width: 980px; margin: 0 auto; }
.contact-details { display: flex; flex-direction: column; gap: 23px; }
.contact-detail-item { display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: center; gap: 15px; }
.contact-detail-icon { display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; background: #f5f0e6; color: #c9a84c; }
.contact-detail-item span { display: block; margin-bottom: 2px; color: #999; font-size: 12px; }
.contact-detail-item strong { display: block; color: #0a1a3e; font-size: 14px; font-weight: 600; line-height: 1.65; }
.contact-detail-item a { transition: color 0.2s; }
.contact-detail-item a:hover { color: #c9a84c; }
.consultation-form { padding: 30px; border: 1px solid #f0f0f0; border-radius: 12px; background: #fafafa; box-shadow: 0 12px 38px rgba(10,26,62,0.07); }
.consultation-form h3 { margin-bottom: 18px; color: #0a1a3e; font-size: 21px; }
.consultation-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consultation-form label { display: block; margin-bottom: 12px; }
.consultation-form label > span { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.consultation-form input,
.consultation-form textarea { display: block; width: 100%; border: 1px solid #e5e5e5; border-radius: 4px; background: #fff; color: #333; font: inherit; font-size: 14px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.consultation-form input { height: 44px; padding: 0 13px; }
.consultation-form textarea { min-height: 92px; padding: 11px 13px; resize: vertical; }
.consultation-form input:focus,
.consultation-form textarea:focus { border-color: #c9a84c; box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.consultation-form button { width: 100%; min-height: 44px; border: 0; border-radius: 4px; background: #c9a84c; color: #fff; font: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.consultation-form button:hover { background: #b9963f; box-shadow: 0 8px 20px rgba(201,168,76,0.24); transform: translateY(-1px); }
.consultation-form button:disabled { background: #c8b77f; cursor: wait; box-shadow: none; transform: none; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consultation-warning { margin: 2px 0 12px; padding: 9px 11px; border-left: 3px solid #c9a84c; background: #f8f3e8; color: #685c3f; font-size: 11px; line-height: 1.65; }
.privacy-disclosure { margin: 0 0 12px; border: 1px solid #e8e2d5; border-radius: 4px; background: #fff; }
.privacy-disclosure summary { padding: 9px 11px; color: #0a1a3e; font-size: 12px; font-weight: 600; cursor: pointer; }
.privacy-disclosure div { padding: 0 11px 10px; }
.privacy-disclosure p { margin-top: 6px; color: #666; font-size: 11px; line-height: 1.65; }
.consultation-form .consultation-consent { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; color: #444; font-size: 11px; line-height: 1.6; cursor: pointer; }
.consultation-form .consultation-consent input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 1px; padding: 0; accent-color: #c9a84c; }
.consultation-form .consultation-consent > span { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }
.consultation-engagement { margin-bottom: 12px; color: #777; font-size: 11px; line-height: 1.6; }
.consultation-status { min-height: 20px; margin-top: 9px; font-size: 12px; line-height: 1.55; text-align: center; }
.consultation-status:empty { min-height: 0; margin-top: 0; }
.consultation-status.is-pending { color: #766632; }
.consultation-status.is-success { color: #26734d; }
.consultation-status.is-error { color: #a03d3d; }
.contact-office-bar { display: grid; grid-template-columns: 1.15fr 2.15fr 1fr 1.4fr; align-items: stretch; max-width: 980px; margin: 50px auto 0; overflow: hidden; border: 1px solid #e9e9e9; border-radius: 8px; background: #fafafa; }
.contact-office-brand { display: flex; min-height: 100px; padding: 22px 28px; flex-direction: column; justify-content: center; background: #0a1a3e; color: #fff; }
.contact-office-brand span { margin-bottom: 5px; color: #c9a84c; font-family: 'Playfair Display', serif; font-size: 11px; letter-spacing: 2px; }
.contact-office-brand strong { font-size: 20px; letter-spacing: 1px; }
.contact-office-item { display: flex; min-width: 0; padding: 20px 22px; flex-direction: column; justify-content: center; border-left: 1px solid #ececec; }
.contact-office-item span { margin-bottom: 5px; color: #aaa; font-size: 11px; }
.contact-office-item strong { color: #0a1a3e; font-size: 12px; font-weight: 600; line-height: 1.65; overflow-wrap: anywhere; }
.contact-office-item a { transition: color 0.2s; }
.contact-office-item a:hover { color: #c9a84c; }

@media (max-width: 900px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 38px; max-width: 680px; }
  .contact-details { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-office-bar { grid-template-columns: 1fr 1fr; max-width: 680px; }
  .contact-office-brand { min-height: 112px; }
  .contact-office-item { min-height: 112px; }
}

@media (max-width: 600px) {
  .contact-page { padding-bottom: 48px; }
  .contact-page-hero { padding: 72px 0 20px; }
  .contact-page-hero p { padding: 0 24px; }
  .contact-page-content { padding-top: 24px; }
  .contact-page-grid { gap: 30px; }
  .contact-details { display: flex; }
  .consultation-form { padding: 22px 18px; }
  .consultation-form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-office-bar { grid-template-columns: 1fr; margin-top: 36px; }
  .contact-office-brand,
  .contact-office-item { min-height: 0; padding: 19px 22px; border-left: 0; border-top: 1px solid #ececec; }
  .contact-office-brand { border-top: 0; }
}

/* ===== Beijing ===== */
.section-beijing { background: #f5f5f7; }
.beijing-section-header .beijing-title-side:first-child { margin-right: 12px; }
.beijing-section-header .beijing-title-side:last-child { margin-left: 12px; }
.beijing-images { display: flex; gap: 20px; max-width: 1050px; margin: 0 auto 32px; justify-content: center; }
.beijing-img { width: 50%; height: auto; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.beijing-content { max-width: 1050px; margin: 0 auto; }
.awards-wrapper { display: flex; align-items: center; justify-content: center; gap: 16px; }
.beijing-awards { display: none; }
.beijing-awards.active-award-page { display: flex; gap: 20px; margin-bottom: 40px; }
.award-arrow-btn { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid #ddd; background: #fff; font-size: 24px; cursor: pointer; color: #0a1a3e; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.award-arrow-btn:hover { background: #0a1a3e; color: #fff; border-color: #0a1a3e; }
.award-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 14px 14px; background: #f5f0e6; border-radius: 12px; border: 1px solid #e8e0d0; transition: all 0.3s; height: 260px; width: 220px; flex-shrink: 0; justify-content: center; overflow: hidden; }
.award-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); border-color: #c9a84c; }
.award-logo { width: 125px; height: 105px; margin: 0 auto 14px; object-fit: contain; display: block; }
.award-name { display: block; font-size: 20px; font-weight: 700; color: #0a1a3e; margin-bottom: 6px; }
.award-detail { font-size: 14px; color: #888; line-height: 1.3; }
.beijing-text p { margin-bottom: 20px; font-size: 15px; color: #444; line-height: 2; }/* ===== Footer ===== */
.footer { background: #0a1a3e; color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { font-size: 18px; font-weight: 700; color: #fff; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer h4 { font-size: 15px; color: #c9a84c; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: 0.2s; }
.footer ul li a:hover { color: #c9a84c; }
.footer-contact p { font-size: 14px; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: #c9a84c; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px; padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

@media (max-width: 768px) {
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero h1 { font-size: 36px; }
  .practices-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .beijing-awards.active-award-page { display: flex; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .practices-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .beijing-awards.active-award-page { display: flex; flex-wrap: wrap; gap: 12px; }
}

/* ===== Animations ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
