:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --navy: #0f2341;
  --navy-2: #173862;
  --gold: #c7a56a;
  --text: #1f2937;
  --muted: #64748b;
  --line: rgba(15, 35, 65, 0.1);
  --shadow: 0 18px 50px rgba(15, 35, 65, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199,165,106,0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(23,56,98,0.12), transparent 28%),
    linear-gradient(180deg, #edf3f9 0%, #f7f9fc 45%, #eef2f7 100%);
  line-height: 1.72;
}

body.page-dark {
  background:
    radial-gradient(circle at top left, rgba(199,165,106,0.1), transparent 24%),
    linear-gradient(180deg, #eaf0f7 0%, #f5f8fc 52%, #edf2f8 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.prototype-badge {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 35, 65, 0.9);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 28px rgba(15, 35, 65, 0.22);
  backdrop-filter: blur(10px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(15, 35, 65, 0.08);
  backdrop-filter: blur(14px);
}

/* 关于天物页面 - 透明头部，城市图作为背景 */
.site-header-dark {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(15, 35, 65, 0.3));
  flex-shrink: 0;
}

.brand-light .brand-logo {
  filter: drop-shadow(0 4px 12px rgba(15, 35, 65, 0.8));
  opacity: 0.95;
}

.brand-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.brand-subtitle {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  color: #334155;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.cta-link {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
  box-shadow: 0 12px 22px rgba(15, 35, 65, 0.18);
}

.cta-link::after {
  display: none;
}

/* 深色头部下，CTA按钮不再使用实心胶囊，保持和相邻导航项一致的透明文字样式 */
.site-header-dark .nav-links-light .cta-link {
  background: transparent;
  color: rgba(255, 255, 255, 0.92) !important;
  box-shadow: none;
  padding: 6px 0;
  font-weight: 400;
  border-radius: 0;
}

.site-header-dark .nav-links-light .cta-link:hover {
  background: transparent;
  color: #fff !important;
}

.hero {
  padding: 86px 0 54px;
}

.hero-compact {
  padding: 62px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.panel,
.card,
.hero-main,
.hero-side,
.info-box,
.split-panel {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-main {
  padding: 50px;
  background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(245,248,252,0.86));
}

.hero-side {
  padding: 28px;
  background: linear-gradient(180deg, rgba(15,35,65,0.98), rgba(23,56,98,0.92));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-side::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(199,165,106,0.14);
  right: -60px;
  bottom: -70px;
}

.eyebrow,
.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(199,165,106,0.14);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.eyebrow::before,
.page-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.lead,
.hero-main p,
.page-hero p {
  margin: 0;
  color: #334155;
  font-size: 18px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 35, 65, 0.22);
}

.button.secondary {
  border: 1px solid rgba(15, 35, 65, 0.14);
  background: rgba(255,255,255,0.74);
  color: var(--navy);
}

.quick-facts,
.feature-list,
.metric-grid,
.service-grid,
.content-grid,
.contact-grid,
.team-grid,
.timeline,
.strength-grid,
.link-grid {
  display: grid;
  gap: 18px;
}

.quick-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.fact {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(15,35,65,0.04);
  border: 1px solid rgba(15,35,65,0.08);
}

.fact strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 14px;
}

.fact span,
.hero-side p,
.hero-side li {
  color: var(--muted);
  font-size: 14px;
}

.hero-side .side-title {
  margin: 18px 0 12px;
  font-size: 28px;
  line-height: 1.3;
}

.hero-side p,
.hero-side li {
  color: rgba(255,255,255,0.85);
}

.hero-side ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.hero-grid-city {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.hero-main-city {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(244,248,252,0.88)),
    radial-gradient(circle at top left, rgba(199,165,106,0.14), transparent 34%);
}

.hero-side-visual {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.city-visual-board {
  display: grid;
  gap: 18px;
}

.city-shot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 20px 45px rgba(15,35,65,0.16);
  background: #dfe8f3;
}

.city-shot img,
.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-shot-large {
  min-height: 360px;
}

.city-shot-large img {
  min-height: 360px;
}

.city-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.city-shot-grid .city-shot {
  min-height: 212px;
}

.city-shot-grid .city-shot img {
  min-height: 212px;
}

.quick-facts-city .fact {
  background: rgba(15,35,65,0.05);
}

.section {
  padding: 27px 0;
}

.section-tight {
  padding-top: 10px;
}


.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.24;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-desc {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
}

.card {
  padding: 28px;
  border: 1px solid rgba(15, 35, 65, 0.08);
}

.card h3,
.split-panel h3,
.info-box h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--navy);
}

.card p,
.split-panel p,
.info-box p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card ul,
.split-panel ul,
.info-box ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* 业务领域页面 - 深色卡片 */
.service-grid .card {
  background: linear-gradient(145deg, #2d4f85 0%, #1a3a6b 100%);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.service-grid .card h3 {
  color: #fff;
}

.service-grid .card p,
.service-grid .card ul {
  color: rgba(255,255,255,0.85);
}

.service-grid .card .service-index {
  background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  color: #fff;
}

.service-index,
.metric,
.step-number,
.team-role {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(15,35,65,0.08), rgba(15,35,65,0.02));
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 18px;
}

.content-grid {
  grid-template-columns: 1fr 1fr;
}

.split-panel {
  padding: 32px;
}

.split-panel.dark {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #fff;
}

.split-panel.dark h3,
.split-panel.dark p,
.split-panel.dark li {
  color: rgba(255,255,255,0.88);
}

.split-panel.dark h3 {
  color: #fff;
}

.link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.link-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: 0 14px 30px rgba(15,35,65,0.08);
}

.link-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
}

.link-card span {
  color: var(--muted);
  font-size: 14px;
}

.strength-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.city-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.city-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: 0 18px 42px rgba(15,35,65,0.14);
  background: #dfe8f3;
}

.city-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,21,41,0.04), rgba(9,21,41,0.58));
}

.city-card-wide {
  min-height: 320px;
}

.city-card-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
}

.city-card-copy span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.city-card-copy strong {
  display: block;
  font-size: 24px;
  line-height: 1.25;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


.team-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: 0 14px 30px rgba(15,35,65,0.08);
}

.team-photo {
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15,35,65,0.12), rgba(15,35,65,0.03));
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.info-box {
  padding: 32px;
  border: 1px solid rgba(15,35,65,0.08);
}

.info-box.dark {
  background: linear-gradient(180deg, rgba(15,35,65,0.98), rgba(23,56,98,0.92));
  color: #fff;
}

.info-box.dark h3,
.info-box.dark p,
.info-box.dark li {
  color: rgba(255,255,255,0.88);
}

.info-box-map {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.info-box.dark .contact-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.info-box.dark .contact-item strong,
.info-box.dark .contact-item span {
  color: #fff;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(15,35,65,0.04);
  border: 1px solid rgba(15,35,65,0.08);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 14px;
}

.contact-item span {
  color: var(--muted);
  font-size: 14px;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map-box {
  min-height: 260px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(15,35,65,0.12), rgba(15,35,65,0.04));
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

footer {
  padding: 30px 0 42px;
  color: #64748b;
  font-size: 13px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(15,35,65,0.08);
  padding-top: 18px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .content-grid,
  .contact-grid,
  .city-gallery {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .strength-grid,
  .team-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .hero,
  .hero-compact,
  .section {
    padding: 34px 0;
  }

  .hero-main,
  .hero-side,
  .card,
  .split-panel,
  .info-box {
    padding: 22px;
  }

  .quick-facts,
  .service-grid,
  .strength-grid,
  .team-grid,
  .contact-grid,
  .link-grid,
  .city-shot-grid,
  .city-gallery {
    grid-template-columns: 1fr;
  }

  .city-shot-large,
  .city-shot-large img,
  .city-shot-grid .city-shot,
  .city-shot-grid .city-shot img,
  .city-card,
  .city-card-wide {
    min-height: 220px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .lead,
  .hero-main p,
  .page-hero p {
    font-size: 16px;
  }

  .site-header-overlay {
    position: absolute;
  }

  .nav-overlay {
    align-items: flex-start;
  }

  .home-hero-single {
    min-height: auto;
    padding-top: 110px;
  }

  .home-hero-content {
    min-height: auto;
    padding-bottom: 36px;
    align-items: end;
  }

  .home-hero-copy {
    max-width: none;
    padding: 22px;
  }

  .home-contact-strip {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .home-contact-qr-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-contact-qr {
    gap: 6px;
    padding: 14px 12px 10px;
  }

  .qr-card {
    width: 90px;
    height: 90px;
  }

  .home-contact-meta-legal {
    padding: 20px 18px 18px 22px;
  }

  .meta-line {
    flex-direction: column;
    gap: 4px;
  }
}




.home-minimal {
  background: #09172b;
}

.home-main {
  min-height: 100vh;
}

.site-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}

.nav-overlay {
  min-height: 96px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand-light .brand-title,
.brand-light .brand-subtitle,
.nav-links-light {
  color: rgba(255,255,255,0.92);
}

.nav-links-light a::after {
  background: rgba(255,255,255,0.82);
}

.nav-links-light a {
  text-shadow: 0 2px 12px rgba(9,21,41,0.3);
}

.nav-links-light a.active {
  background: rgba(255,255,255,0.95);
  color: var(--navy) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-links-light a.active::after {
  display: none;
}

.home-hero-single {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
}

.home-hero-media {
  position: absolute;
  inset: 0;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,21,41,0.55) 0%, rgba(9,21,41,0.22) 42%, rgba(9,21,41,0.10) 100%),
    linear-gradient(180deg, rgba(9,21,41,0.15) 0%, rgba(9,21,41,0.06) 48%, rgba(9,21,41,0.55) 100%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 120px;
}

.home-hero-copy {
  max-width: 620px;
  color: #fff;
}

.home-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.home-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  white-space: nowrap;
}

.home-hero-copy p {
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,0.86);
  font-size: 18px;
}

/* ===== 关于律师 关于律所 入口卡片 ===== */
.letter-entry {
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, #081428 0%, #0a1a3a 100%);
  border-radius: 12px;
  transition: box-shadow 0.3s;
}
.letter-entry:hover {
  box-shadow: 0 8px 32px rgba(8,20,40,0.25);
}
.letter-entry-inner {
  padding: 48px 56px;
  color: #fff;
}
.letter-entry-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.letter-entry-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
  .letter-entry-inner { padding: 36px 28px; }
  .letter-entry-title { font-size: 20px; }
}

.home-contact-strip-wrap {
  position: relative;
  margin-top: -64px;
  padding-bottom: 34px;
}

.home-contact-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(145deg, #2d4f85 0%, #1a3a6b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 55px rgba(5,14,28,0.34);
}

.home-contact-qr-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-contact-qr {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 14px 12px 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  text-align: center;
}

.qr-card {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(255,255,255,0.10);
}

.qr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-copy strong {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.96);
  font-size: 14px;
}

.qr-copy span {
  color: rgba(255,255,255,0.70);
  font-size: 12px;
  line-height: 1.5;
}

.qr-copy-label {
  margin-top: -1px;
}

.qr-copy-label strong {
  margin-bottom: 0;
}

.home-contact-meta-legal {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px 24px 18px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.home-contact-meta-legal::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(255,255,255,0.18);
}

.meta-line {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  padding-left: 10px;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
}

.meta-legal-label {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.meta-legal-value {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.meta-line-muted {
  margin-top: 2px;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
}

.meta-line-link {
  color: #d4b27a;
  font-size: 12px;
}

/* 新增样式：关于天物页面 */
.section-dark {
  background: linear-gradient(180deg, var(--navy-soft), var(--navy-2));
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: rgba(255, 255, 255, 0.92);
}

.split-panel.reversed {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.split-panel-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(9, 21, 41, 0.3);
}

.founder-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.founder-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 32px rgba(9, 21, 41, 0.2);
}

.founder-content h3 {
  margin: 0 0 8px;
  font-size: 28px;
  color: var(--navy);
}

.founder-title {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.founder-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .founder-profile {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .split-panel.reversed {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .split-panel-media img {
    max-height: 300px;
    object-fit: cover;
  }
}

/* 二级页面 footer 包裹层 - 只保留间距，背景由 home-contact-strip 提供 */
.footer-wrap {
  padding-bottom: 34px;
  margin-top: 20px;
}

/* 关于天物页面 - 大图 hero 区域 */
.about-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 78px;
}

.about-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero-content h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.about-hero-quote {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

/* 关于天物 - 左右区域样式统一 */
.about-text-panel {
  background: #f8fafc;
  padding: 32px 36px;
  border-radius: 16px;
  border: 3px solid var(--navy);
  box-shadow: 0 8px 30px rgba(15, 35, 65, 0.15);
}

.about-image-panel {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15, 35, 65, 0.15);
  border: 3px solid var(--navy);
}

.about-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text-panel h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  color: var(--navy);
}

.about-text-panel p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 14px 0;
  color: #334155;
}

.about-text-panel p:last-child {
  margin-bottom: 0;
}

.about-slogan {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
}

.about-principles-section {
  background: #f8f9fa;
  padding: 10px 0;
}

.about-principles-title {
  text-align: center;
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 36px;
  letter-spacing: 0.06em;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-principle-card {
  padding: 28px 32px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.3s, transform 0.3s;
}

.about-principle-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.principle-label {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.principle-desc {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.about-principle {
  font-weight: 600;
  color: var(--navy);
}

/* ========== 部门子页面通用样式 ========== */

/* 面包屑导航 */
.dept-breadcrumb {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.dept-breadcrumb:hover {
  color: #fff;
}

/* 区块标题 */
.dept-section-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--navy);
}

/* 交替背景 */
.dept-alt-bg {
  background: #f8f9fa;
}

/* 部门概述 */
.dept-overview p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}
.dept-overview p:last-child {
  margin-bottom: 0;
}

/* 业务范围网格 */
.dept-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dept-scope-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
  transition: box-shadow 0.3s, transform 0.3s;
}
.dept-scope-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.dept-alt-bg .dept-scope-item {
  background: #fff;
}

.scope-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.dept-scope-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.dept-scope-item p {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* 服务流程 */
.dept-process {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: center;
}

.process-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 24px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2d4f85, #1a3a6b);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.process-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

.process-arrow {
  font-size: 24px;
  color: #ccc;
  padding-top: 24px;
  flex-shrink: 0;
}

/* 律师团队 */
.dept-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 单列布局：一排一个律师（用于非金融部门） */
.dept-team-grid-single {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.dept-team-grid-single .dept-lawyer-card {
  max-width: 100%;
}

.dept-lawyer-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
  transition: box-shadow 0.3s;
}
.dept-lawyer-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.lawyer-photo {
  width: 160px;
  height: 210px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8e8e8;
}
.lawyer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lawyer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dept-lawyer-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.lawyer-role {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}

.lawyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.lawyer-tag {
  font-size: 12px;
  color: var(--navy);
  background: rgba(15,35,65,0.06);
  padding: 3px 10px;
  border-radius: 999px;
}

.lawyer-details {
  margin: 4px 0 0;
  font-size: 13px;
  color: #333;
  line-height: 1.8;
}

.lawyer-details p {
  margin: 0;
}

.lawyer-phone {
  color: #666;
  font-size: 12px;
  margin-top: 6px;
}

.lawyer-contact {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #999;
}

.lawyer-contact span {
  margin-right: 16px;
}

/* 典型案例 */
.dept-case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dept-case-card {
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
  transition: box-shadow 0.3s;
}
.dept-case-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.dept-case-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.case-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--navy);
  background: rgba(15,35,65,0.06);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.dept-case-card p:last-child {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* 业务领域 - 图片卡片 */
.service-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 35, 65, 0.2);
}

.service-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-img-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 22%;
  background: transparent;
  color: #fff;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* 响应式 */
@media (max-width: 900px) {
  .dept-team-grid {
    grid-template-columns: 1fr;
  }
  .dept-scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dept-process {
    flex-wrap: wrap;
  }
  .process-arrow {
    display: none;
  }
  .process-step {
    max-width: 100%;
  }
  .dept-case-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .dept-scope-grid {
    grid-template-columns: 1fr;
  }
  .dept-lawyer-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .lawyer-photo {
    width: 120px;
    height: 160px;
  }
  .lawyer-tags {
    justify-content: center;
  }
}





