/* =========================================================
   广东莞升律师事务所 · 多页官网补充样式
   GuanSheng Law Firm —— pages.css
   依赖：style.css（基础变量 / 按钮 / 表单 / 卡片风格）
   ========================================================= */

/* ---------- 内页 Hero ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 72px;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(27, 58, 82, 0.9), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.page-hero .hero-bg { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }
.page-hero .hero-bg svg { width: 100%; height: 100%; }

.page-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 39, 0.5);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.page-hero-title {
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 4px;
  margin-bottom: 14px;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}

.page-hero-sub {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
}

/* 面包屑 */
.breadcrumb {
  position: relative;
  margin-top: 26px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a { color: var(--gold-light); transition: color 0.25s ease; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

/* ---------- 通栏内容区（白底灰底交替已由 body/section 控制） ---------- */
.content { padding-top: 20px; }

/* 区块小标题 */
.block-head { margin-bottom: 26px; }
.block-head .block-eyebrow {
  font-size: 12.5px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.block-head h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy-800);
  letter-spacing: 1px;
}
.block-head p { color: var(--text-light); font-size: 14.5px; margin-top: 6px; }

/* ---------- 关于页 · 简介 ---------- */
.about-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 44px;
  align-items: start;
}
.about-intro-side {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  writing-mode: vertical-rl;
  letter-spacing: 8px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 16px;
  user-select: none;
  opacity: 0.75;
  padding: 30px 0 30px 1px;
  border-left: 1px solid rgba(201, 162, 39, 0.4);
  align-self: stretch;
}
.about-intro-text h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy-800);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.about-intro-text p { margin-bottom: 18px; color: var(--text); font-size: 16px; line-height: 2; }
.about-intro-text strong { color: var(--navy-800); }

/* 优势卡（与首页 about-card 同源） */
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.about-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(201, 162, 39, 0.5); }
.about-card-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold);
  margin-bottom: 20px;
}
.about-card-icon svg { width: 30px; height: 30px; }
.about-card h3 { font-size: 19px; color: var(--navy-800); margin-bottom: 10px; font-family: var(--font-serif); }
.about-card p { font-size: 14.5px; color: var(--text-light); }

/* ---------- 发展历程 ---------- */
.timeline { position: relative; max-width: 860px; margin: 0 auto; padding: 10px 0 0; }
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 44px 0;
}
.timeline-item:nth-child(even) { margin-left: 50%; padding: 0 0 44px 40px; }
.timeline-item::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.25);
}
.timeline-item:nth-child(even)::after { right: auto; left: -6px; }
.timeline-year { font-family: var(--font-serif); font-size: 22px; color: var(--gold-dark); font-weight: 700; margin-bottom: 6px; }
.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.timeline-card h4 { font-size: 16.5px; color: var(--navy-800); margin-bottom: 8px; font-family: var(--font-serif); }
.timeline-card p { font-size: 14px; color: var(--text-light); }

/* ---------- 办公环境（纯 CSS 占位） ---------- */
.env-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.env-card {
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(320px 220px at 30% 20%, rgba(201, 162, 39, 0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900));
  border: 1px solid rgba(201, 162, 39, 0.25);
}
.env-card svg { width: 62px; height: 62px; color: var(--gold); opacity: 0.85; }
.env-card .env-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 16px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(11, 22, 34, 0.9));
}
.env-card .env-sub { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.6); letter-spacing: 1px; margin-top: 2px; }

/* 荣誉 */
.honor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.honor-item {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.honor-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201, 162, 39, 0.5); }
.honor-icon { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(201, 162, 39, 0.12); color: var(--gold); }
.honor-icon svg { width: 26px; height: 26px; }
.honor-item h4 { font-size: 16px; color: var(--navy-800); margin-bottom: 6px; font-family: var(--font-serif); }
.honor-item p { font-size: 13.5px; color: var(--text-light); }

/* ---------- 价值观页 ---------- */
.values-page-hero {
  position: relative;
  color: var(--white);
}
.values-page-hero .values-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(800px 420px at 15% -10%, rgba(27, 58, 82, 0.9), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
}
.values-hero-inner { position: relative; z-index: 1; padding: calc(var(--header-h) + 70px) 0 60px; }
.values-hero-quote { font-family: var(--font-serif); font-size: clamp(22px, 3.4vw, 34px); color: var(--gold-light); letter-spacing: 3px; margin-bottom: 12px; }
.values-hero-quote-sub { color: rgba(255, 255, 255, 0.72); font-size: 15px; letter-spacing: 1px; }

.section-alt { background: var(--cream); }
.section-title-sm { font-family: var(--font-serif); font-size: clamp(24px, 3.4vw, 34px); color: var(--navy-800); text-align: center; letter-spacing: 2px; }
.section-sub-sm { text-align: center; color: var(--text-light); font-size: 15px; margin-top: 8px; }

/* 价值观 3 卡（白底版与深色版通用，深色在 .values 中） */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  position: relative;
  border-radius: var(--radius);
  padding: 46px 34px 36px;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.value-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.value-card:hover::before { transform: scaleX(1); }
.value-num { font-size: 44px; font-weight: 700; font-family: var(--font-serif); color: rgba(201, 162, 39, 0.35); display: block; margin-bottom: 10px; }
.value-card h3 { font-size: 24px; font-family: var(--font-serif); color: var(--navy-800); margin-bottom: 14px; letter-spacing: 2px; }
.value-card p { color: var(--text-light); font-size: 15px; }

/* 深色价值观区块（values 页底部 + 首页复用） */
.values {
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(27, 58, 82, 0.85), transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: var(--white);
}
.section-head--light .section-title { color: var(--white); }
.section-head--light .section-sub { color: rgba(255, 255, 255, 0.7); }
.values .value-card { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.14); }
.values .value-card h3 { color: var(--gold-light); }
.values .value-card p { color: rgba(255, 255, 255, 0.78); }

/* ---------- 匠心 / 准则（引用块） ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.quote-grid .quote-card { text-align: center; border-left: 3px solid var(--gold); border-radius: var(--radius); }
.quote-grid .quote-card h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gold-dark);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.quote-grid .quote-card p { font-size: 14.5px; color: var(--navy-800); line-height: 1.9; }
.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 26px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-card .quote-text { font-family: var(--font-serif); font-size: 17px; color: var(--navy-800); line-height: 1.9; margin-bottom: 14px; }
.quote-card .quote-src { font-size: 13px; color: var(--gold-dark); letter-spacing: 1px; }

.principles-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.principle {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.principle:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.principle-index { flex: 0 0 auto; font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--gold); line-height: 1; padding-top: 4px; }
.principle h4 { font-size: 17px; color: var(--navy-800); margin-bottom: 6px; font-family: var(--font-serif); }
.principle p { font-size: 14.5px; color: var(--text-light); }

/* ---------- 业务领域页 ---------- */
.practice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.practice-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.practice-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(201, 162, 39, 0.55); }
.practice-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  margin-bottom: 18px;
  transition: background 0.3s ease, color 0.3s ease;
}
.practice-card:hover .practice-icon { background: var(--navy-800); color: var(--gold-light); }
.practice-icon svg { width: 28px; height: 28px; }
.practice-card h3 { font-size: 17.5px; color: var(--navy-800); margin-bottom: 8px; font-family: var(--font-serif); }
.practice-card p { font-size: 13.8px; color: var(--text-light); }
.practice-card--alt { background: linear-gradient(160deg, var(--navy-800), var(--navy-700)); color: var(--white); }
.practice-card--alt h3 { color: var(--white); }
.practice-card--alt p { color: rgba(255, 255, 255, 0.7); }
.practice-card--alt .practice-icon { background: rgba(255, 255, 255, 0.1); }

/* 口袋卡（首页用，无边框微缩） */
.practice-card--mini { padding: 22px 20px; }
.practice-card--mini h3 { font-size: 16px; }
.practice-card--mini p { font-size: 13px; }
.practice-card--mini .practice-icon { width: 46px; height: 46px; margin-bottom: 12px; }
.practice-card--mini .practice-icon svg { width: 22px; height: 22px; }

/* ---------- 核心服务标签 ---------- */
.core-services { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 880px; margin: 0 auto; }
.core-service {
  font-size: 15px;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 999px;
  padding: 10px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.core-service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: #fffdf7; }

.steps { max-width: 1000px; margin: 0 auto; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.steps-row--six { grid-template-columns: repeat(3, 1fr); }
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.4);
  display: block;
  margin-bottom: 8px;
}
.step h4 { font-size: 17px; color: var(--navy-800); margin-bottom: 8px; font-family: var(--font-serif); }
.step p { font-size: 13.5px; color: var(--text-light); }

/* ---------- 律师团队页 ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 24px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.team-card--placeholder {
  border: 1px dashed var(--gold);
  background: linear-gradient(180deg, #fffdf7, var(--white));
}
.team-card--placeholder .team-role { background: rgba(201, 162, 39, 0.08); }
.team-photo {
  width: 108px; height: 108px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  display: flex; align-items: center; justify-content: center;
}
.team-avatar svg { width: 64px; height: 64px; }
.team-card h3 { font-size: 20px; color: var(--navy-800); font-family: var(--font-serif); margin-bottom: 4px; }
.team-role {
  display: inline-block;
  font-size: 13px;
  color: var(--gold-dark);
  background: rgba(201, 162, 39, 0.12);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.team-bio { font-size: 14px; color: var(--text-light); }
.team-card .team-focus { margin-top: 12px; }
.team-card .team-focus span {
  display: inline-block;
  font-size: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 10px;
  margin: 3px 3px;
  color: var(--text-light);
}

.team-group { margin-bottom: 56px; }
.team-group-title {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy-800);
  margin-bottom: 28px;
}
.team-group-title::before, .team-group-title::after {
  content: "";
  width: 40px; height: 1px;
  background: var(--gold);
}

/* ---------- 法律资讯页 ---------- */
.news-layout { display: grid; grid-template-columns: 1fr 300px; gap: 44px; align-items: start; }
.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201, 162, 39, 0.5); }
.news-meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--text-light); margin-bottom: 10px; }
.news-meta .news-cat { color: var(--gold-dark); font-weight: 600; }
.news-card h3 { font-size: 18.5px; color: var(--navy-800); font-family: var(--font-serif); margin-bottom: 8px; line-height: 1.55; }
.news-card h3:hover { color: var(--gold-dark); }
.news-card p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.news-more { font-size: 14px; color: var(--navy-600); font-weight: 600; }
.news-card:hover .news-more { color: var(--gold-dark); }

/* 侧栏 */
.news-side { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 24px; }
.side-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.side-panel h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy-800);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.side-list li { padding: 4px 0; }
.side-list a { font-size: 14px; color: var(--text-light); transition: color 0.25s ease, padding-left 0.25s ease; display: block; }
.side-list a:hover { color: var(--gold-dark); padding-left: 6px; }
.side-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.side-tags a { font-size: 12.5px; border: 1px solid var(--border); border-radius: 999px; padding: 4px 12px; color: var(--text-light); transition: all 0.25s ease; }
.side-tags a:hover { border-color: var(--gold); color: var(--gold-dark); }

/* 分页 */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--text-light);
  transition: all 0.25s ease;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold-dark); }
.pagination .current { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }

/* ---------- 资讯详情页 ---------- */
.article-wrap { max-width: 860px; margin: 0 auto; }
.article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 48px;
}
.article-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.4vw, 32px);
  color: var(--navy-800);
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--text-light); padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 26px; }
.article-meta .sep { opacity: 0.4; }
.article-body { font-size: 16px; color: var(--text); line-height: 2.05; }
.article-body p { margin-bottom: 20px; }
.article-body h3 { font-family: var(--font-serif); font-size: 20px; color: var(--navy-800); margin: 30px 0 14px; }
.article-body ul { list-style: none; margin: 0 0 20px; }
.article-body li { position: relative; padding-left: 22px; margin-bottom: 10px; }
.article-body li::before {
  content: "";
  position: absolute; left: 0; top: 0.72em;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
}
.article-tip { background: var(--cream); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin: 26px 0; }
.article-tip p { margin: 0; font-size: 14.5px; color: var(--text); }

.article-actions { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.article-actions a { font-size: 14.5px; color: var(--navy-600); font-weight: 600; transition: color 0.25s ease; }
.article-actions a:hover { color: var(--gold-dark); }

/* ---------- 联系我们页 ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--navy-800);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-item h4 { font-size: 16px; color: var(--navy-800); margin-bottom: 2px; }
.contact-item p { font-size: 14.5px; color: var(--text-light); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 34px 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; color: var(--navy-800); margin-bottom: 8px; font-weight: 600; }
.form-group label span { color: #c0392b; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}
.form-group .error { border-color: #c0392b !important; box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important; }
.form-tip { margin-top: 14px; font-size: 12.5px; color: var(--text-light); }
.form-tip.success { color: #1e7e34; font-weight: 600; }
.form-tip.error { color: #c0392b; font-weight: 600; }

/* 地图占位 */
.map-placeholder {
  position: relative;
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(500px 280px at 70% 20%, rgba(201, 162, 39, 0.14), transparent 60%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900));
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.map-pin { width: 56px; height: 56px; color: var(--gold); animation: floatY 5s ease-in-out infinite; }
.map-pin svg { width: 100%; height: 100%; }
.map-label { text-align: center; margin-top: 10px; font-size: 13px; color: rgba(255, 255, 255, 0.7); letter-spacing: 2px; }
.map-note { position: absolute; top: 16px; right: 20px; font-size: 12px; color: rgba(255, 255, 255, 0.5); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- 资讯 CTA（首页底部） ---------- */
.cta-banner {
  padding: 76px 0;
  background:
    radial-gradient(800px 380px at 80% 120%, rgba(27, 58, 82, 0.9), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  text-align: center;
}
.cta-banner h2 { font-family: var(--font-serif); font-size: clamp(26px, 4vw, 38px); letter-spacing: 2px; margin-bottom: 12px; }
.cta-banner p { color: rgba(255, 255, 255, 0.72); margin-bottom: 28px; font-size: 15.5px; }

/* ---------- 首页特化微调 ---------- */
.home-preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .about-grid, .practice-grid, .team-grid, .honor-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row, .steps-row--six { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .news-layout { grid-template-columns: 1fr; }
  .news-side { position: static; }
  .env-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-side { display: none; }
}

@media (max-width: 860px) {
  .timeline::before { left: 7px; }
  .timeline-item, .timeline-item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 36px 34px; }
  .timeline-item::after, .timeline-item:nth-child(even)::after { left: 0; right: auto; }
}

@media (max-width: 640px) {
  .about-grid, .practice-grid, .team-grid, .honor-grid, .values-grid { grid-template-columns: 1fr; }
  .steps-row, .steps-row--six { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .env-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .home-preview-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .article { padding: 26px 20px; }
  .article-actions { flex-direction: column; }
}