/* ====================================================
   胡明华律师网站 - 全站样式
   风格：深色系 + 金色点缀，高端律师事务所品质
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c870;
  --gold-dark:   #9e7a2e;
  --navy:        #0d1b2a;
  --navy-mid:    #1a2e42;
  --navy-light:  #243850;
  --white:       #ffffff;
  --off-white:   #f8f6f1;
  --gray-100:    #f3f2ee;
  --gray-200:    #e8e6e0;
  --gray-400:    #a8a49c;
  --gray-600:    #6b6760;
  --gray-800:    #3a3733;
  --text-dark:   #1c1a17;
  --text-mid:    #4a4540;
  --shadow-sm:   0 2px 12px rgba(13,27,42,.08);
  --shadow-md:   0 6px 28px rgba(13,27,42,.14);
  --shadow-lg:   0 16px 56px rgba(13,27,42,.22);
  --radius:      4px;
  --radius-md:   8px;
  --transition:  all .3s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--gray-100);
  color: var(--text-dark);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Wrapper ── */
.site-wrapper {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.top-bar {
  background: var(--navy);
  color: var(--gray-400);
  font-size: 12px;
  padding: 6px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: .04em;
}
.top-bar a { color: var(--gray-400); transition: var(--transition); }
.top-bar a:hover { color: var(--gold); }
.top-bar .hotline { color: var(--gold); font-weight: 700; font-size: 13px; }

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.site-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text .name {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
}
.logo-text .firm {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .1em;
}

.main-nav { display: flex; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: .04em;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(201,168,76,.15);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: translateX(-50%) scaleX(1); }

/* ══════════════════════════════════════
   HERO / BANNER
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,27,42,.85) 0%,
    rgba(13,27,42,.3) 60%,
    transparent 100%
  );
}
.hero-content {
  position: absolute;
  top: 50%; left: 80px;
  transform: translateY(-50%);
  color: var(--white);
  max-width: 560px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: .24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.hero-content h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.hero-content .subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 36px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  letter-spacing: .06em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.5);
  filter: brightness(1.08);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: var(--radius);
  letter-spacing: .06em;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* stat strip */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13,27,42,.7) 100%);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  gap: 0;
  padding-top: 24px;
}
.hero-stat {
  flex: 1;
  max-width: 200px;
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,.2);
  color: var(--white);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; letter-spacing: .06em; }

/* ══════════════════════════════════════
   LAYOUT - two-column (sidebar + content)
══════════════════════════════════════ */
.page-body {
  display: flex;
  gap: 0;
  padding: 56px 48px;
  align-items: flex-start;
}

/* SIDEBAR */
.sidebar {
  width: 280px;
  flex-shrink: 0;
  margin-right: 48px;
}

.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.sidebar-card-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 16px 20px;
  font-family: 'Noto Serif SC', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-card-head::before {
  content: '';
  width: 3px; height: 16px;
  background: var(--gold);
  border-radius: 2px;
  display: inline-block;
}
.sidebar-card-body { padding: 20px; }

.info-row {
  display: flex;
  gap: 6px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
  line-height: 1.5;
}
.info-row:last-child { border-bottom: none; }
.info-row .lbl {
  color: var(--gray-600);
  flex-shrink: 0;
  width: 70px;
  font-weight: 500;
}
.info-row .val { color: var(--text-dark); flex: 1; word-break: break-all; }

.practice-list { list-style: none; }
.practice-list li {
  border-bottom: 1px solid var(--gray-200);
}
.practice-list li:last-child { border-bottom: none; }
.practice-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 4px;
  font-size: 13.5px;
  color: var(--text-mid);
  transition: var(--transition);
}
.practice-list a::before {
  content: '▸';
  color: var(--gold);
  font-size: 12px;
}
.practice-list a:hover { color: var(--gold-dark); padding-left: 8px; }

.contact-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-cta .tel {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-cta .desc { font-size: 12px; color: rgba(13,27,42,.65); margin-bottom: 14px; }
.contact-cta a.cta-btn {
  display: block;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 0;
  border-radius: var(--radius);
  letter-spacing: .1em;
  transition: var(--transition);
}
.contact-cta a.cta-btn:hover { background: var(--navy-mid); }

/* MAIN CONTENT */
.main-content { flex: 1; min-width: 0; }

/* Section heading */
.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  letter-spacing: .04em;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 2px;
}
.section { margin-bottom: 56px; }

/* ── CASE CARD ── */
.case-card {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.case-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.case-date-badge {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  width: 80px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  text-align: center;
}
.case-date-badge .month { font-size: 11px; letter-spacing: .12em; color: var(--gold); text-transform: uppercase; }
.case-date-badge .day { font-size: 32px; font-weight: 700; line-height: 1; }
.case-date-badge .year { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 2px; }
.case-body { padding: 20px 24px; flex: 1; }
.case-body h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
}
.case-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; }
.case-tag {
  display: inline-block;
  background: rgba(201,168,76,.12);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: .06em;
}

/* ── ARTICLE CARD ── */
.article-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.article-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  opacity: 0;
  transition: var(--transition);
}
.article-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold-light); transform: translateY(-2px); }
.article-card:hover::before { opacity: 1; }
.article-card h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
}
.article-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.article-meta { font-size: 12px; color: var(--gray-400); display: flex; gap: 16px; align-items: center; padding-top: 12px; border-top: 1px dashed var(--gray-200); }
.article-meta span::before { content: '📅 '; }
.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.read-more:hover { color: var(--gold); gap: 8px; }

/* ── FAQ ── */
.faq-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.faq-card:hover { box-shadow: var(--shadow-md); }
.faq-question {
  padding: 18px 24px;
  background: var(--off-white);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  display: flex;
  gap: 12px;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-200);
}
.faq-question::before {
  content: 'Q';
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-answer {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  display: flex;
  gap: 12px;
}
.faq-answer::before {
  content: 'A';
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.faq-footer { padding: 8px 24px 14px; font-size: 12px; color: var(--gray-400); }

/* ── REVIEW CARD ── */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 24px;
  font-size: 64px;
  color: var(--gray-200);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.review-author { font-weight: 700; font-size: 15px; color: var(--navy); }
.review-date { font-size: 12px; color: var(--gray-400); }
.stars { color: #e8a020; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.review-tag { font-size: 12px; color: var(--gold-dark); font-weight: 600; margin-top: 10px; }

/* ── HONORS GALLERY ── */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.honor-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--navy);
  transition: var(--transition);
  cursor: pointer;
}
.honor-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.honor-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: .9;
  transition: var(--transition);
}
.honor-item:hover img { opacity: 1; transform: scale(1.04); }
.honor-caption {
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-align: center;
}

/* ── ABOUT PAGE ── */
.about-profile {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.about-avatar {
  width: 200px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-avatar img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.about-info { flex: 1; }
.about-info h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-info .title-tag {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.about-info p { font-size: 14px; color: var(--text-mid); line-height: 1.9; margin-bottom: 20px; }
.about-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.meta-badge {
  background: var(--navy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: .06em;
}

.section-prose p { font-size: 14.5px; color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; }
.section-prose h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
}
.section-prose ul { padding-left: 24px; }
.section-prose ul li { font-size: 14px; color: var(--text-mid); margin-bottom: 8px; line-height: 1.7; }

/* ── CONTACT ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.contact-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card .icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.contact-card h4 { font-size: 13px; color: var(--gray-600); font-weight: 500; margin-bottom: 4px; letter-spacing: .06em; }
.contact-card p { font-size: 15px; color: var(--navy); font-weight: 600; }
.contact-card span { font-size: 12px; color: var(--gray-400); }

.form-section {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-group textarea { height: 160px; resize: vertical; }
.submit-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 48px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: .08em;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.45); filter: brightness(1.06); }

/* ══════════════════════════════════════
   PAGE BANNER (inner pages)
══════════════════════════════════════ */
.page-banner {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.page-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.6);
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,.9) 0%, rgba(13,27,42,.4) 100%);
}
.page-banner-content {
  position: absolute;
  top: 50%; left: 80px;
  transform: translateY(-50%);
  color: var(--white);
}
.page-banner-content .breadcrumb {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.page-banner-content h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.page-banner-content p { font-size: 15px; color: rgba(255,255,255,.72); letter-spacing: .04em; }

/* ══════════════════════════════════════
   HOMEPAGE SECTIONS
══════════════════════════════════════ */
.home-intro {
  padding: 64px 48px 0;
}

/* Feature cards */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
  margin-top: 64px;
}
.feature-item {
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--off-white); }
.feature-item .fi-icon { font-size: 36px; margin-bottom: 12px; }
.feature-item h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; font-family: 'Noto Serif SC', serif; }
.feature-item p { font-size: 12.5px; color: var(--gray-600); line-height: 1.6; }

/* "More" link */
.section-more {
  text-align: right;
  margin-top: 8px;
}
.section-more a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.section-more a:hover { color: var(--gold); gap: 8px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, var(--navy) 0%, #060e17 100%);
  color: rgba(255,255,255,.65);
  padding: 60px 48px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-text .name { color: var(--white); font-size: 22px; }
.footer-brand .logo-text .firm { color: var(--gold); }
.footer-desc { font-size: 13px; line-height: 1.8; margin-top: 16px; margin-bottom: 20px; }
.footer-contact-item { display: flex; gap: 8px; font-size: 13px; margin-bottom: 10px; align-items: flex-start; }
.footer-contact-item .icon { flex-shrink: 0; color: var(--gold); }
.footer-col h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,.3);
  letter-spacing: .06em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col a::before { content: '›'; color: var(--gold); font-size: 16px; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.gold-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 2px;
  margin: 12px 0 24px;
}
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.serif { font-family: 'Noto Serif SC', serif; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .5s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ══════════════════════════════════════
   MOBILE HAMBURGER MENU
══════════════════════════════════════ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
}
.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ══════════════════════════════════════
   RESPONSIVE - TABLET (max-width: 1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .top-bar {
    padding: 6px 24px;
    font-size: 11px;
  }
  
  .site-header {
    padding: 0 24px;
    height: 70px;
  }
  
  .main-nav a {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .hero {
    height: 420px;
  }
  
  .hero-content {
    left: 40px;
    max-width: 480px;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .page-body {
    padding: 40px 24px;
  }
  
  .sidebar {
    width: 240px;
    margin-right: 32px;
  }
  
  .features-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }
  
  .feature-item:nth-child(2) {
    border-right: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE - MOBILE (max-width: 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Top bar */
  .top-bar {
    flex-direction: column;
    gap: 4px;
    padding: 8px 16px;
    text-align: center;
  }
  
  /* Header & Navigation */
  .site-header {
    padding: 0 16px;
    height: 60px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 99;
  }
  
  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .main-nav a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: var(--radius);
  }
  
  /* Hero */
  .hero {
    height: 320px;
  }
  
  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    padding: 24px 16px;
    text-align: center;
  }
  
  .hero-eyebrow {
    justify-content: center;
    font-size: 11px;
  }
  
  .hero-eyebrow::before {
    width: 24px;
  }
  
  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .hero-content .subtitle {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .btn-primary, .btn-outline {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Features */
  .features-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  
  .feature-item {
    padding: 24px 20px;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
  
  .feature-item:last-child {
    border-bottom: none;
  }
  
  /* Page body - single column */
  .page-body {
    flex-direction: column;
    padding: 24px 16px;
    gap: 24px;
  }
  
  .sidebar {
    width: 100%;
    margin-right: 0;
    order: 2;
  }
  
  .main-content {
    order: 1;
  }
  
  .section {
    margin-bottom: 36px;
  }
  
  .section-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  
  /* Case cards */
  .case-card {
    flex-direction: column;
  }
  
  .case-date-badge {
    width: 100%;
    flex-direction: row;
    gap: 8px;
    padding: 12px 16px;
  }
  
  .case-date-badge .month {
    font-size: 12px;
  }
  
  .case-date-badge .day {
    font-size: 24px;
  }
  
  .case-date-badge .year {
    font-size: 12px;
    margin-top: 0;
  }
  
  .case-body {
    padding: 16px;
  }
  
  /* About profile */
  .about-profile {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  
  .about-avatar {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  
  .about-info h2 {
    font-size: 22px;
    text-align: center;
  }
  
  .about-info .title-tag {
    text-align: center;
  }
  
  .about-meta {
    justify-content: center;
  }
  
  /* Contact cards */
  .contact-cards {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }
  
  /* Form */
  .form-section {
    padding: 24px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .submit-btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  /* FAQ */
  .faq-question,
  .faq-answer {
    padding: 14px 16px;
    font-size: 13px;
  }
  
  /* Page banner */
  .page-banner {
    height: 200px;
  }
  
  .page-banner-content {
    left: 24px;
    right: 24px;
  }
  
  .page-banner-content h1 {
    font-size: 28px;
  }
  
  /* Footer */
  .site-footer {
    padding: 40px 16px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }
  
  .footer-brand .logo-text .name {
    font-size: 18px;
  }
  
  .footer-desc {
    font-size: 12px;
    margin-top: 12px;
    margin-bottom: 16px;
  }
  
  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 14px;
    padding-bottom: 8px;
  }
  
  .footer-col ul li {
    margin-bottom: 8px;
  }
  
  .footer-col a {
    font-size: 12px;
  }
  
  .footer-bottom {
    padding: 16px 0;
    font-size: 11px;
  }
  
  /* Honor grid */
  .honor-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Review cards */
  .review-card {
    padding: 20px;
  }
  
  /* Article cards */
  .article-card {
    padding: 18px 20px;
  }
  
  /* Info rows */
  .info-row {
    font-size: 12px;
  }
  
  .info-row .lbl {
    width: 60px;
  }
  
  /* Contact CTA */
  .contact-cta {
    padding: 20px 16px;
  }
  
  .contact-cta .tel {
    font-size: 20px;
  }
  
  /* Section more link */
  .section-more {
    text-align: center;
    margin-top: 12px;
  }
  
  /* Meta badges */
  .meta-badge {
    font-size: 11px;
    padding: 5px 12px;
  }
  
  /* Sidebar cards */
  .sidebar-card-head {
    font-size: 14px;
    padding: 14px 16px;
  }
  
  .sidebar-card-body {
    padding: 16px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  /* Top bar */
  .top-bar {
    font-size: 10px;
    padding: 6px 12px;
  }
  
  .top-bar .hotline {
    font-size: 12px;
  }
  
  /* Logo */
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .logo-text .name {
    font-size: 16px;
  }
  
  .logo-text .firm {
    font-size: 9px;
    display: none;
  }
  
  /* Hero */
  .hero {
    height: 280px;
  }
  
  .hero-content {
    padding: 16px 12px;
  }
  
  .hero-eyebrow {
    font-size: 10px;
    margin-bottom: 8px;
  }
  
  .hero-content h1 {
    font-size: 26px;
  }
  
  .hero-content .subtitle {
    font-size: 13px;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  
  /* Features */
  .feature-item {
    padding: 20px 16px;
  }
  
  .feature-item .fi-icon {
    font-size: 30px;
  }
  
  .feature-item h3 {
    font-size: 14px;
  }
  
  .feature-item p {
    font-size: 12px;
  }
  
  /* Page body */
  .page-body {
    padding: 20px 12px;
  }
  
  .section-title {
    font-size: 16px;
  }
  
  /* Case card */
  .case-body h3 {
    font-size: 14px;
  }
  
  .case-body p {
    font-size: 12px;
  }
  
  /* Article card */
  .article-card h3 {
    font-size: 14px;
  }
  
  .article-card p {
    font-size: 12px;
  }
  
  /* About */
  .about-info p {
    font-size: 13px;
  }
  
  /* Form */
  .form-section {
    padding: 20px 16px;
  }
  
  .form-group label {
    font-size: 12px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  /* FAQ */
  .faq-question {
    font-size: 12px;
    padding: 12px 14px;
  }
  
  .faq-answer {
    font-size: 12px;
    padding: 12px 14px;
  }
  
  /* Footer */
  .footer-bottom {
    font-size: 10px;
    line-height: 1.6;
  }
  
  /* Review */
  .review-card {
    padding: 16px;
  }
  
  .review-author {
    font-size: 13px;
  }
  
  .review-text {
    font-size: 12px;
  }
}
