:root {
  --ink: #17201b;
  --muted: #5c6961;
  --line: #dfe8e1;
  --paper: #ffffff;
  --soft: #f4f8f5;
  --green: #167a5b;
  --green-dark: #0e5f46;
  --amber: #d08320;
  --blue: #2d6cdf;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #fbfcfa;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-mark { display: inline-flex; align-items: center; min-width: 180px; }
.brand-logo-img { display: block; width: 180px; height: 60px; object-fit: contain; }
.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}
.brand-mark strong { display: block; font-size: 18px; }
.brand-mark small { display: block; color: var(--muted); font-size: 12px; }
.site-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.site-nav a {
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 8px;
  color: #2f3d35;
  font-weight: 650;
}
.site-nav a.active, .site-nav a:hover { background: #e6f3ed; color: var(--green-dark); }
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 20px 30px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 34px;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-weight: 800;
}
h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.03;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 650px;
  margin: 20px 0 26px;
  color: var(--muted);
  font-size: 18px;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(24, 46, 34, .14);
}
.quick-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.quick-search input {
  min-width: 0;
  border: 0;
  padding: 15px 16px;
  font: inherit;
}
.quick-search button {
  border: 0;
  padding: 0 22px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.band, .content-block, .company-profile {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 20px;
}
.muted {
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2 + 20px));
  padding-right: max(20px, calc((100vw - 1180px) / 2 + 20px));
  background: var(--soft);
  border-block: 1px solid var(--line);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}
.section-head h2, .content-block h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}
.section-head p, .content-block p {
  margin: 0;
  color: var(--muted);
  max-width: 650px;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.link-grid.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.directory-card {
  min-height: 124px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.directory-card:hover {
  transform: translateY(-2px);
  border-color: #a7d1bf;
  box-shadow: 0 14px 34px rgba(22, 122, 91, .11);
}
.directory-card span { font-size: 18px; font-weight: 800; color: var(--green-dark); }
.directory-card small { color: var(--muted); font-size: 14px; }
.content-block {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}
.check-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--amber);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 0 var(--line);
}
.company-profile {
  padding-top: 22px;
}
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 18px;
  align-items: start;
}
.profile-copy {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.profile-copy p {
  margin: 0;
  color: #334139;
}
.profile-copy p + p { margin-top: 12px; }
.fact-panel {
  display: grid;
  gap: 10px;
}
.fact-panel div {
  min-height: 58px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.fact-panel span {
  color: var(--muted);
  font-size: 14px;
}
.fact-panel strong, .fact-panel a {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--green-dark);
  font-weight: 800;
}
.highlight-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.highlight-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf4ee;
  color: var(--green-dark);
  font-weight: 750;
}
.topic-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.topic-list span {
  min-height: 74px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 750;
}
.topic-list small {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--blue);
}
.site-footer {
  max-width: 1180px;
  margin: 36px auto 0;
  padding: 28px 20px 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer strong { color: var(--ink); }
.site-footer p { margin: 6px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.footer-links a { color: var(--green-dark); font-weight: 700; }
.is-hidden { display: none; }
@media (max-width: 860px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  .site-nav { justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; padding-top: 32px; }
  h1 { font-size: 46px; }
  .section-head, .content-block, .site-footer { display: block; }
  .section-head p { margin-top: 8px; }
  .profile-layout { grid-template-columns: 1fr; }
  .fact-panel div { grid-template-columns: 76px minmax(0, 1fr); }
  .link-grid, .link-grid.compact, .topic-list { grid-template-columns: 1fr; }
  .site-footer .footer-links { justify-content: flex-start; margin-top: 18px; }
}
