
  :root {
    --ink: #0a0e1a;
    --navy: #0d1b3e;
    --blue-deep: #1a2d5a;
    --blue-mid: #1e3a6e;
    --blue-light: #2d5a9e;
    --gold: #c9a84c;
    --gold-light: #e8cc85;
    --ivory: #f7f4ee;
    --white: #fdfcfa;
    --mist: #d4dae8;
    --text-body: #e8e4dc;
    --text-dim: #8a97b8;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--ink);
    color: var(--text-body);
    font-family: 'Noto Serif SC', 'Libre Baskerville', serif;
    font-weight: 400; /* base body = regular, no light */
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 48px;
    background: linear-gradient(to bottom, rgba(10,14,26,0.95) 0%, transparent 100%);
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.3s, background 0.3s;
  }
  nav.scrolled {
    background: rgba(10,14,26,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }
  .nav-logo {
    display: flex; flex-direction: column; gap: 2px;
    text-decoration: none;
  }
  .nav-logo-cn {
    font-family: 'Noto Serif SC'; font-weight: 700; font-size: 15px;
    letter-spacing: 0.15em; color: var(--gold);
  }
  .nav-logo-en {
    font-family: 'Cormorant Garamond'; font-weight: 500; font-size: 11px;
    letter-spacing: 0.3em; color: var(--text-dim); text-transform: uppercase;
  }
  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }
  .nav-links a {
    font-family: 'Noto Serif SC'; font-weight: 500; font-size: 13px;
    letter-spacing: 0.15em; color: var(--text-dim);
    text-decoration: none; transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--gold); transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

  /* ─── PAGE SYSTEM ─── */
  .page { display: none; min-height: 100vh; }
  .page.active { display: block; }

  /* ═══════════════════════════════
     HOME PAGE
  ═══════════════════════════════ */
  #page-home { display: none; }
  #page-home.active { display: block; }

  /* Hero */
  .hero {
    position: relative; height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    overflow: hidden;
  }

  /* Abstract SVG illustration background */
  .hero-canvas {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .hero-canvas svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
  }

  /* Noise overlay */
  .hero-canvas::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4; pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 10;
    display: flex; flex-direction: column;
    align-items: center; gap: 28px;
    text-align: center;
    animation: heroFadeIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond'; font-weight: 500; font-style: italic;
    font-size: 15px; letter-spacing: 0.4em; color: var(--gold);
    text-transform: uppercase; opacity: 0.9;
    animation: heroFadeIn 1.6s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-title-cn {
    font-family: 'Noto Serif SC'; font-weight: 700; font-size: clamp(34px, 5vw, 60px);
    letter-spacing: 0.3em; color: var(--white);
    line-height: 1.3;
    animation: heroFadeIn 1.6s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-title-en {
    font-family: 'Cormorant Garamond'; font-weight: 500; font-size: clamp(15px, 2vw, 20px);
    letter-spacing: 0.6em; color: var(--text-dim); text-transform: uppercase;
    animation: heroFadeIn 1.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-rule {
    width: 1px; height: 56px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: heroFadeIn 1.6s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  /* Bilingual see-lawyers button: CN / EN / arrow, three lines */
  .btn-see-lawyers {
    display: inline-flex; flex-direction: column;
    align-items: center; gap: 6px;
    padding: 22px 60px 18px;
    border: 1px solid rgba(201,168,76,0.5);
    background: transparent;
    color: var(--ivory);
    text-decoration: none; cursor: pointer;
    position: relative; overflow: hidden;
    transition: color 0.4s, border-color 0.4s;
    animation: heroFadeIn 1.6s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .btn-see-lawyers::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.14), rgba(201,168,76,0.04));
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .btn-see-lawyers:hover { border-color: var(--gold); color: var(--gold); }
  .btn-see-lawyers:hover::before { transform: translateX(0) skewX(-15deg); }
  .btn-line {
    position: relative; z-index: 1;
    display: block; line-height: 1;
  }
  .btn-line-cn {
    font-family: 'Noto Serif SC'; font-weight: 500; font-size: 15px;
    letter-spacing: 0.32em;
  }
  .btn-line-en {
    font-family: 'Cormorant Garamond'; font-weight: 500; font-size: 11px;
    letter-spacing: 0.55em; text-transform: uppercase; opacity: 0.8;
  }
  .btn-arrow {
    position: relative; z-index: 1;
    font-family: 'Cormorant Garamond'; font-size: 22px; font-weight: 500;
    line-height: 1; margin-top: 2px;
    transition: transform 0.3s;
  }
  .btn-see-lawyers:hover .btn-arrow { transform: translateX(6px); }

  /* Scroll hint — bigger and bolder */
  .scroll-hint {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0.55; animation: bounce 2s ease-in-out infinite;
  }
  .scroll-hint span {
    font-family: 'Cormorant Garamond'; font-size: 15px; font-weight: 500;
    letter-spacing: 0.5em; text-transform: uppercase;
    color: var(--text-dim);
  }
  .scroll-hint-line {
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, var(--text-dim), 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; }
  }
  @keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* ── About strip below hero ── */
  .home-about {
    background: var(--navy);
    padding: 100px 10vw;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: start;
    border-top: 1px solid rgba(201,168,76,0.1);
  }
  .home-about-left {}
  .section-label {
    font-family: 'Cormorant Garamond'; font-size: 12px; font-style: italic; font-weight: 500;
    letter-spacing: 0.45em; color: var(--gold); text-transform: uppercase;
    margin-bottom: 20px;
  }
  .home-about-title {
    font-family: 'Noto Serif SC'; font-weight: 600; font-size: clamp(24px,3vw,36px);
    color: var(--white); line-height: 1.6; letter-spacing: 0.08em;
    margin-bottom: 24px;
  }
  .home-about-body {
    font-family: 'Noto Serif SC'; font-weight: 400; font-size: 15px;
    color: var(--text-dim); line-height: 2.2; letter-spacing: 0.06em;
  }
  .home-about-right {
    display: flex; flex-direction: column; gap: 2px;
    padding-top: 48px;
  }
  .stat-row {
    display: flex; align-items: baseline; gap: 16px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .stat-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
  .stat-num {
    font-family: 'Cormorant Garamond'; font-size: 56px; font-weight: 500;
    color: var(--gold); line-height: 1; min-width: 90px;
  }
  .stat-label {
    font-family: 'Noto Serif SC'; font-weight: 400; font-size: 13px;
    color: var(--text-dim); letter-spacing: 0.12em; line-height: 1.8;
  }

  /* ── Practice areas ── */
  .home-practice {
    background: var(--ink);
    padding: 100px 10vw;
    border-top: 1px solid rgba(201,168,76,0.08);
  }
  .home-practice-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 60px;
  }
  .home-practice-title {
    font-family: 'Noto Serif SC'; font-weight: 600; font-size: clamp(22px,2.5vw,32px);
    color: var(--white); letter-spacing: 0.1em;
  }
  .practice-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  }
  .practice-card {
    background: var(--blue-deep);
    padding: 40px 28px; position: relative; overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    cursor: default;
  }
  .practice-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }
  .practice-card:hover { transform: translateY(-4px); }
  .practice-card:hover::before { transform: scaleX(1); }
  .practice-icon {
    font-size: 28px; margin-bottom: 20px; opacity: 0.7;
  }
  .practice-name {
    font-family: 'Noto Serif SC'; font-weight: 600; font-size: 16px;
    color: var(--white); letter-spacing: 0.1em; margin-bottom: 12px;
  }
  .practice-desc {
    font-family: 'Noto Serif SC'; font-weight: 400; font-size: 13px;
    color: var(--text-dim); line-height: 2; letter-spacing: 0.06em;
  }

  /* ── Contact strip ── */
  .home-contact {
    background: var(--blue-deep);
    padding: 60px 10vw;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(201,168,76,0.12);
  }
  .contact-info { display: flex; gap: 60px; }
  .contact-item {}
  .contact-item-label {
    font-family: 'Cormorant Garamond'; font-size: 12px; font-style: italic; font-weight: 500;
    letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase;
    margin-bottom: 6px;
  }
  .contact-item-val {
    font-family: 'Noto Serif SC'; font-weight: 400; font-size: 14px;
    color: var(--text-dim); letter-spacing: 0.08em;
  }


  /* ═══════════════════════════════
     LAWYERS PAGE
  ═══════════════════════════════ */
  #page-lawyers { background: var(--ink); padding-top: 100px; }

  .lawyers-header {
    padding: 60px 10vw 40px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .page-title {
    font-family: 'Cormorant Garamond'; font-weight: 500; font-style: italic;
    font-size: clamp(38px,5vw,68px);
    color: var(--white); line-height: 1.1;
  }
  .page-subtitle {
    font-family: 'Noto Serif SC'; font-weight: 500; font-size: 14px;
    letter-spacing: 0.2em; color: var(--gold);
    margin-top: 12px;
  }

  .lawyers-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 2px; padding: 2px;
  }
  .lawyer-card {
    background: var(--navy);
    display: grid; grid-template-columns: 200px 1fr;
    cursor: pointer; position: relative; overflow: hidden;
    transition: background 0.3s;
  }
  .lawyer-card:hover { background: var(--blue-deep); }
  .lawyer-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .lawyer-card:hover::after { opacity: 1; }

  .lawyer-avatar {
    width: 200px; height: 260px;
    background: var(--blue-deep);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    flex-shrink: 0;
  }
  .lawyer-avatar-monogram {
    font-family: 'Cormorant Garamond'; font-size: 72px; font-weight: 500;
    color: rgba(201,168,76,0.4); line-height: 1;
    user-select: none;
  }
  .lawyer-avatar-cn {
    font-family: 'Noto Serif SC'; font-size: 18px; font-weight: 500;
    color: var(--white); margin-top: 8px; letter-spacing: 0.2em;
  }

  .lawyer-info {
    padding: 40px 36px;
    display: flex; flex-direction: column;
    justify-content: space-between;
  }
  .lawyer-name-row {
    display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  }
  .lawyer-name-cn {
    font-family: 'Noto Serif SC'; font-size: 23px; font-weight: 600;
    color: var(--white); letter-spacing: 0.15em;
  }
  .lawyer-role {
    font-family: 'Cormorant Garamond'; font-size: 13px; font-style: italic; font-weight: 500;
    letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase;
  }
  .lawyer-specialties {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
  }
  .specialty-tag {
    padding: 4px 12px;
    border: 1px solid rgba(201,168,76,0.3);
    font-family: 'Noto Serif SC'; font-size: 11px; font-weight: 500;
    color: var(--gold); letter-spacing: 0.1em;
  }
  .lawyer-bio {
    font-family: 'Noto Serif SC'; font-weight: 400; font-size: 14px;
    color: var(--text-dim); line-height: 2.2; letter-spacing: 0.05em;
    margin-top: 20px;
  }
  .lawyer-view-more {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 24px;
    font-family: 'Cormorant Garamond'; font-size: 14px; font-style: italic; font-weight: 500;
    color: var(--gold); opacity: 0.7; transition: opacity 0.3s;
  }
  .lawyer-card:hover .lawyer-view-more { opacity: 1; }

  /* Modal */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(10,14,26,0.92);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal {
    background: var(--navy);
    border: 1px solid rgba(201,168,76,0.15);
    max-width: 680px; width: 90%; max-height: 85vh;
    overflow-y: auto; position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .modal-overlay.open .modal { transform: translateY(0) scale(1); }
  .modal-header {
    padding: 48px 48px 32px;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    display: flex; align-items: flex-start; gap: 28px;
  }
  .modal-monogram {
    width: 80px; height: 80px; flex-shrink: 0;
    background: var(--blue-deep);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond'; font-size: 40px; font-weight: 500;
    color: rgba(201,168,76,0.5);
  }
  .modal-name-block {}
  .modal-name-cn {
    font-family: 'Noto Serif SC'; font-size: 26px; font-weight: 600;
    color: var(--white); letter-spacing: 0.15em;
  }
  .modal-role {
    font-family: 'Cormorant Garamond'; font-style: italic; font-size: 14px; font-weight: 500;
    letter-spacing: 0.3em; color: var(--gold); margin-top: 6px;
  }
  .modal-body {
    padding: 36px 48px 48px;
  }
  .modal-section-title {
    font-family: 'Cormorant Garamond'; font-size: 12px; font-style: italic; font-weight: 500;
    letter-spacing: 0.45em; color: var(--gold); text-transform: uppercase;
    margin-bottom: 14px; margin-top: 28px;
  }
  .modal-section-title:first-child { margin-top: 0; }
  .modal-text {
    font-family: 'Noto Serif SC'; font-weight: 400; font-size: 14px;
    color: var(--text-dim); line-height: 2.2; letter-spacing: 0.05em;
  }
  .modal-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px;
  }
  .modal-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none; cursor: pointer;
    font-family: 'Cormorant Garamond'; font-size: 24px; font-weight: 500;
    color: var(--text-dim); transition: color 0.3s;
    padding: 8px; line-height: 1;
  }
  .modal-close:hover { color: var(--gold); }


  /* ═══════════════════════════════
     ABOUT PAGE
  ═══════════════════════════════ */
  #page-about { background: var(--ink); padding-top: 100px; }

  .about-hero {
    padding: 80px 10vw 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
    align-items: start;
  }
  .about-left {}
  .about-story-title {
    font-family: 'Cormorant Garamond'; font-weight: 500; font-style: italic;
    font-size: clamp(34px,4vw,56px);
    color: var(--white); line-height: 1.2; margin-bottom: 32px;
  }
  .about-story-body {
    font-family: 'Noto Serif SC'; font-weight: 400; font-size: 15px;
    color: var(--text-dim); line-height: 2.4; letter-spacing: 0.06em;
  }
  .about-right {
    padding-top: 24px;
  }

  .values-list {
    display: flex; flex-direction: column; gap: 0;
  }
  .value-item {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; gap: 24px; align-items: flex-start;
  }
  .value-num {
    font-family: 'Cormorant Garamond'; font-size: 38px; font-weight: 500;
    color: rgba(201,168,76,0.35); line-height: 1; flex-shrink: 0; width: 44px;
  }
  .value-content {}
  .value-title {
    font-family: 'Noto Serif SC'; font-weight: 600; font-size: 16px;
    color: var(--white); letter-spacing: 0.1em; margin-bottom: 8px;
  }
  .value-desc {
    font-family: 'Noto Serif SC'; font-weight: 400; font-size: 14px;
    color: var(--text-dim); line-height: 2; letter-spacing: 0.06em;
  }

  /* Bar association link */
  .bar-link-section {
    margin: 80px 10vw;
    padding: 60px;
    border: 1px solid rgba(201,168,76,0.15);
    background: var(--navy);
    display: grid; grid-template-columns: 1fr auto;
    gap: 40px; align-items: center;
  }
  .bar-link-text {}
  .bar-link-title {
    font-family: 'Noto Serif SC'; font-weight: 600; font-size: 18px;
    color: var(--white); letter-spacing: 0.1em; margin-bottom: 10px;
  }
  .bar-link-desc {
    font-family: 'Noto Serif SC'; font-weight: 400; font-size: 14px;
    color: var(--text-dim); line-height: 2; letter-spacing: 0.06em;
  }
  .bar-link-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 36px;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-family: 'Noto Serif SC'; font-size: 14px; font-weight: 500; letter-spacing: 0.2em;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
    white-space: nowrap;
    cursor: pointer; background: none;
  }
  .bar-link-btn:hover {
    background: rgba(201,168,76,0.08);
    border-color: var(--gold);
  }

  /* About timeline */
  .about-timeline {
    padding: 0 10vw 100px;
  }
  .timeline-title {
    font-family: 'Noto Serif SC'; font-weight: 600; font-size: 20px;
    color: var(--white); letter-spacing: 0.15em; margin-bottom: 48px;
    padding-top: 60px;
    border-top: 1px solid rgba(201,168,76,0.1);
  }
  .timeline-list {
    display: flex; flex-direction: column; gap: 0;
    border-left: 1px solid rgba(201,168,76,0.2);
    padding-left: 48px; margin-left: 20px;
  }
  .timeline-item {
    position: relative; padding-bottom: 40px;
  }
  .timeline-item::before {
    content: ''; position: absolute;
    left: -55px; top: 8px;
    width: 8px; height: 8px;
    border: 1.5px solid var(--gold); border-radius: 50%;
    background: var(--ink);
  }
  .timeline-year {
    font-family: 'Cormorant Garamond'; font-size: 30px; font-weight: 500;
    color: rgba(201,168,76,0.6); margin-bottom: 6px;
  }
  .timeline-event {
    font-family: 'Noto Serif SC'; font-weight: 400; font-size: 14px;
    color: var(--text-dim); line-height: 2; letter-spacing: 0.06em;
  }


  /* ═══════════════════════════════
     CASES PAGE
  ═══════════════════════════════ */
  #page-cases { background: var(--ink); padding-top: 100px; }

  .cases-header {
    padding: 80px 10vw 60px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }

  .coming-soon-block {
    padding: 120px 10vw;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 24px;
  }
  .coming-soon-rule {
    width: 60px; height: 1px; background: rgba(201,168,76,0.3);
  }
  .coming-soon-title {
    font-family: 'Cormorant Garamond'; font-weight: 500; font-style: italic;
    font-size: 52px; color: var(--white);
  }
  .coming-soon-sub {
    font-family: 'Noto Serif SC'; font-weight: 400; font-size: 15px;
    color: var(--text-dim); letter-spacing: 0.15em; line-height: 2;
    max-width: 480px;
  }
  .coming-soon-cn {
    font-family: 'Noto Serif SC'; font-weight: 500; font-size: 14px;
    color: rgba(201,168,76,0.6); letter-spacing: 0.2em;
  }

  /* Case preview cards */
  .cases-preview {
    padding: 0 10vw 100px;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  }
  .case-card {
    background: var(--navy); padding: 44px 32px;
    border-top: 1px solid rgba(201,168,76,0.15);
    position: relative; overflow: hidden;
    opacity: 0.5; filter: blur(0.5px);
  }
  .case-card::after {
    content: '即将上线';
    position: absolute; top: 16px; right: 16px;
    font-family: 'Noto Serif SC'; font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
    color: var(--gold); opacity: 0.5;
    padding: 3px 10px; border: 1px solid rgba(201,168,76,0.2);
  }
  .case-type {
    font-family: 'Cormorant Garamond'; font-size: 12px; font-style: italic; font-weight: 500;
    letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase;
    margin-bottom: 16px;
  }
  .case-title {
    font-family: 'Noto Serif SC'; font-weight: 500; font-size: 16px;
    color: var(--white); letter-spacing: 0.08em; line-height: 1.8;
    margin-bottom: 12px;
  }
  .case-amount {
    font-family: 'Cormorant Garamond'; font-size: 34px; font-weight: 500;
    color: rgba(201,168,76,0.5); line-height: 1;
  }
  .case-amount-label {
    font-family: 'Noto Serif SC'; font-size: 12px; font-weight: 500;
    color: var(--text-dim); letter-spacing: 0.1em;
  }


  /* ─── FOOTER ─── */
  footer {
    background: var(--ink);
    border-top: 1px solid rgba(201,168,76,0.08);
    padding: 48px 10vw;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 24px;
  }
  .footer-logo-cn {
    font-family: 'Noto Serif SC'; font-size: 14px; font-weight: 500;
    letter-spacing: 0.2em; color: var(--text-dim);
  }
  .footer-copy {
    font-family: 'Cormorant Garamond'; font-size: 13px; font-style: italic; font-weight: 500;
    letter-spacing: 0.2em; color: rgba(138,151,184,0.5);
  }

  /* ─── HERO SVG ABSTRACT ILLUSTRATION ─── */
  @keyframes floatA { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-18px) rotate(2deg)} }
  @keyframes floatB { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(12px) rotate(-1.5deg)} }
  @keyframes floatC { 0%,100%{transform:translateX(0)} 50%{transform:translateX(10px)} }
  @keyframes pulseGlow { 0%,100%{opacity:0.15} 50%{opacity:0.35} }
  @keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

  .svg-group-a { animation: floatA 8s ease-in-out infinite; transform-origin: center; }
  .svg-group-b { animation: floatB 11s ease-in-out infinite 1s; transform-origin: center; }
  .svg-group-c { animation: floatC 13s ease-in-out infinite 2s; transform-origin: center; }
  .svg-orbit { animation: rotateSlow 40s linear infinite; transform-origin: 50% 50%; }
  .svg-glow { animation: pulseGlow 5s ease-in-out infinite; }

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { gap: 24px; }
    .home-about { grid-template-columns: 1fr; gap: 40px; padding: 60px 6vw; }
    .practice-grid { grid-template-columns: 1fr 1fr; }
    .lawyers-grid { grid-template-columns: 1fr; }
    .lawyer-card { grid-template-columns: 1fr; }
    .lawyer-avatar { width: 100%; height: 160px; }
    .about-hero { grid-template-columns: 1fr; padding: 60px 6vw 0; }
    .bar-link-section { grid-template-columns: 1fr; padding: 40px; margin: 60px 6vw; }
    .cases-preview { grid-template-columns: 1fr; }
    .home-contact { flex-direction: column; gap: 32px; padding: 48px 6vw; }
    .contact-info { flex-direction: column; gap: 24px; }
    .about-timeline { padding: 0 6vw 60px; }
    .coming-soon-block { padding: 80px 6vw; }
    footer { padding: 40px 6vw; }
    .modal { max-width: 95vw; }
    .modal-header { padding: 32px 28px 24px; }
    .modal-body { padding: 28px 28px 40px; }
  }
  @media (max-width: 600px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .home-about { padding: 50px 6vw; }
    .home-practice { padding: 60px 6vw; }
    .practice-grid { grid-template-columns: 1fr; }
    .lawyers-header { padding: 40px 6vw 28px; }
  }


/* ─── HAMBURGER MENU ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 600px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,14,26,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 80px 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    padding: 20px 0;
    font-size: 16px;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
}