:root {
  --page: #fffaf4;
  --paper: #f7efe5;
  --paper-strong: #ffffff;
  --ink: #24312c;
  --soft-ink: #3f5149;
  --muted: #68776f;
  --sage: #718a70;
  --sage-dark: #4f684f;
  --coral: #ee8a68;
  --coral-dark: #cb7053;
  --coral-soft: #fff0e8;
  --blue-soft: #e8f1f2;
  --lavender-soft: #f1edf3;
  --line: rgba(36, 49, 44, 0.12);
  --line-strong: rgba(36, 49, 44, 0.18);
  --shadow-soft: 0 18px 44px rgba(57, 73, 66, 0.11);
  --shadow-card: 0 12px 30px rgba(57, 73, 66, 0.08);
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  --font-display: "Songti SC", "STSong", "SimSun", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #fffdf8 0, var(--page) 340px, var(--paper) 100%);
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-wrap: pretty;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 244, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.site-header[data-elevated="true"] {
  border-bottom-color: var(--line);
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 8px 24px rgba(57, 73, 66, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  gap: 10px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border: 1px solid rgba(238, 138, 104, 0.24);
  border-radius: 8px;
  background: #ffffff;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--blue-soft);
  outline: none;
}

.header-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  background: var(--sage-dark);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-1px);
  background: var(--sage);
  border-color: var(--sage);
  outline: none;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 52px;
  align-items: center;
  max-width: 1320px;
  min-height: 760px;
  margin: 0 auto;
  padding: 126px 56px 72px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 74px 24px auto;
  height: 250px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(232, 241, 242, 0.72), rgba(255, 240, 232, 0.54), rgba(255, 250, 244, 0));
  pointer-events: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 720px;
}

.hero-brand-lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.hero-brand-lockup span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(79, 104, 79, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

h1 {
  max-width: 760px;
  margin-top: 0;
  font-family: var(--font-body);
  font-size: clamp(46px, 4.1vw, 64px);
  font-weight: 900;
  line-height: 1.16;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 640px;
  margin-top: 22px;
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.78;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--sage-dark);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--sage);
  border-color: var(--sage);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--sage-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #ffffff;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 36px;
}

.hero-points span {
  display: grid;
  gap: 2px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.hero-points strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
}

.hero-points small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hero-media {
  display: grid;
  align-items: center;
  min-width: 0;
}

.hero-media > img {
  width: 100%;
  height: min(58vh, 560px);
  min-height: 430px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-note {
  width: min(320px, calc(100% - 36px));
  margin: -96px 18px 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 21px;
}

.hero-note span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.intro-item {
  min-height: 166px;
  padding: 30px 38px;
  border-right: 1px solid var(--line);
}

.intro-item:last-child {
  border-right: 0;
}

.intro-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.18;
}

.intro-item span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.section {
  padding: 88px 56px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.32fr minmax(0, 0.68fr);
  gap: 44px;
  align-items: end;
  max-width: 1160px;
  margin: 0 auto 40px;
}

.section-heading.compact {
  display: block;
  max-width: 820px;
  margin-left: 0;
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

h2 {
  color: var(--ink);
  font-size: 46px;
  line-height: 1.16;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 240, 232, 0.78), rgba(232, 241, 242, 0.58) 54%, rgba(255, 255, 255, 0.64)),
    var(--page);
}

.about-main {
  max-width: 680px;
}

.about-main h2 {
  margin-bottom: 24px;
}

.about-main p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.82;
}

.about-main p + p {
  margin-top: 16px;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-principles article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.about-principles span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 22px;
}

.about-principles strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
}

.about-principles p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 382px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--sage);
}

.service-card.featured::before {
  background: var(--coral);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-size: 20px;
}

.service-card.featured {
  background: linear-gradient(180deg, #fff7f2 0, #ffffff 44%);
}

.service-card h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.12;
}

.service-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--soft-ink);
  line-height: 1.58;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 54px;
  background: #eef4ef;
}

.trust-copy {
  max-width: 620px;
}

.trust-copy p:last-child {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-row {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 24px;
  padding: 20px;
  border: 1px solid rgba(79, 104, 79, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-row span {
  color: var(--sage-dark);
  font-weight: 800;
}

.trust-row p {
  color: var(--muted);
  line-height: 1.72;
}

.scenario-section {
  background: var(--page);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.scenario-panel {
  min-height: 232px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.scenario-panel:nth-child(2) {
  background: var(--blue-soft);
}

.scenario-panel:nth-child(3) {
  background: var(--coral-soft);
}

.scenario-panel:nth-child(4) {
  background: var(--lavender-soft);
}

.scenario-panel strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.18;
}

.scenario-panel p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.process-section {
  background: #ffffff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.process-list li {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: #ffffff;
  font-family: var(--font-display);
}

.process-list strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 27px;
}

.process-list p {
  color: var(--muted);
  line-height: 1.66;
}

.quote-band {
  padding: 70px 56px;
  background: var(--sage-dark);
  color: #ffffff;
  text-align: center;
}

.quote-band p {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.24;
}

.quote-band span {
  display: block;
  max-width: 680px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.news-section {
  background: #ffffff;
}

.news-heading h2 {
  margin-bottom: 18px;
}

.section-more {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.section-more:hover,
.section-more:focus-visible {
  background: var(--blue-soft);
  border-color: transparent;
  outline: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.news-card {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.news-card:hover,
.news-card:focus-within,
.news-card:focus-visible,
.news-list-card:hover,
.news-list-card:focus-within,
.news-list-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(79, 104, 79, 0.32);
  box-shadow: 0 22px 42px rgba(41, 50, 43, 0.12);
  outline: none;
}

.news-card time {
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.news-card h3 {
  margin-top: 26px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.18;
}

.news-card p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.72;
}

.news-card a {
  width: fit-content;
  margin-top: 24px;
  color: var(--sage-dark);
  font-weight: 800;
  border-bottom: 1px solid rgba(79, 104, 79, 0.36);
}

.news-card a:hover,
.news-card a:focus-visible {
  color: var(--coral);
  border-bottom-color: var(--coral);
  outline: none;
}

.content-page {
  background: var(--page);
}

.page-hero {
  padding: 132px 56px 62px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(232, 241, 242, 0.88), rgba(255, 240, 232, 0.72) 54%, rgba(255, 255, 255, 0.78)),
    var(--page);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--sage-dark);
  font-weight: 800;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--coral);
  outline: none;
}

.page-hero h1 {
  max-width: 900px;
  margin-top: 0;
  font-size: 58px;
}

.page-lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.82;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-meta span,
.page-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.news-list-section {
  background: #ffffff;
}

.news-list-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.7;
}

.news-list-toolbar p {
  max-width: 680px;
}

.news-list-toolbar span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.news-list {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.news-list-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.news-cover,
.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.article-cover {
  margin-bottom: 22px;
}

.news-list-card time {
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.news-list-card h2 {
  font-size: 34px;
}

.news-list-card p {
  color: var(--muted);
  line-height: 1.72;
}

.news-list-card a {
  width: fit-content;
  color: var(--sage-dark);
  font-weight: 800;
  border-bottom: 1px solid rgba(79, 104, 79, 0.36);
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 980px;
  margin: 24px auto 0;
}

.news-pagination[hidden] {
  display: none;
}

.news-pagination button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--sage-dark);
  cursor: pointer;
  font-weight: 800;
}

.news-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.news-pagination span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 42px;
  max-width: 1120px;
  margin: 0 auto;
}

.article-content {
  min-width: 0;
  padding: 0;
}

.article-content > * + * {
  margin-top: 18px;
}

.article-content h2 {
  margin-top: 42px;
  font-size: 34px;
}

.article-content h3 {
  margin-top: 28px;
  font-size: 25px;
}

.article-content p,
.article-content li {
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.82;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.answer-box {
  padding: 22px;
  border: 1px solid rgba(79, 104, 79, 0.18);
  border-radius: 8px;
  background: #eef4ef;
}

.answer-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sage-dark);
  font-size: 15px;
}

.article-aside {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 14px;
}

.aside-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.aside-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
}

.aside-card p {
  color: var(--muted);
  line-height: 1.68;
}

.aside-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--sage-dark);
  font-weight: 800;
  border-bottom: 1px solid rgba(79, 104, 79, 0.36);
}

.related-news {
  display: grid;
  gap: 10px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.related-news a {
  color: var(--sage-dark);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.78fr);
  gap: 46px;
  background: linear-gradient(90deg, var(--page) 0 58%, #eef4ef 58% 100%);
}

.contact-copy > p:last-of-type {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.contact-cards {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin-top: 30px;
}

.contact-cards div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-cards strong {
  color: var(--sage-dark);
}

.contact-cards span {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  padding: 0 14px;
}

.lead-form textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--sage);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(113, 138, 112, 0.16);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.form-status.ready {
  background: #e5f0e8;
  color: var(--sage-dark);
}

.form-status.error {
  background: #fff0e8;
  color: #a3402d;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 22px 30px;
  align-items: start;
  padding: 34px 56px;
  background: var(--ink);
  color: #ffffff;
}

.friend-links {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.friend-links strong {
  color: #ffffff;
  font-size: 16px;
}

.friend-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.friend-link-list a {
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.friend-link-list a:hover,
.friend-link-list a:focus-visible {
  color: #ffffff;
  border-bottom-color: #ffffff;
  outline: none;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-logo {
  width: 116px;
  height: auto;
  padding: 8px;
  border-radius: 8px;
  background: #ffffff;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 16px;
}

.service-area {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 360px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.service-area svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: #f4a384;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-area span {
  display: grid;
  gap: 2px;
}

.service-area strong {
  color: #ffffff;
  font-size: 15px;
}

.service-area em {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-style: normal;
}

.site-footer span,
.footer-record {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.footer-record {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 10px;
  margin: 0;
}

.icp-link {
  display: inline-flex;
  color: #e8f1f2;
  border-bottom: 1px solid rgba(232, 241, 242, 0.5);
}

.icp-link:hover,
.icp-link:focus-visible {
  color: #ffffff;
  border-bottom-color: #ffffff;
  outline: none;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    padding: 0 24px;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  body.nav-open .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 86px;
    display: grid;
    padding: 14px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

  body.nav-open .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
    border-radius: 8px;
  }

  .hero,
  .about-section,
  .article-shell,
  .trust-section,
  .contact-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 112px 32px 58px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-media > img {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .hero-note {
    margin: -78px 18px 0 auto;
  }

  .intro-band,
  .about-principles,
  .service-grid,
  .scenario-grid,
  .news-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-item:nth-child(2) {
    border-right: 0;
  }

  .intro-item:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(1),
  .process-list li:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-section {
    background: var(--page);
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .header-action {
    display: none;
  }

  .hero {
    padding: 96px 20px 42px;
  }

  .hero::before {
    top: 68px;
    left: 12px;
    right: 12px;
    height: 170px;
  }

  .hero-brand-lockup {
    gap: 7px;
    margin-bottom: 18px;
  }

  .hero-brand-lockup span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  h1 {
    font-size: 39px;
    line-height: 1.15;
  }

  h2 {
    font-size: 34px;
    line-height: 1.18;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.78;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-points span {
    min-height: 72px;
  }

  .hero-media > img {
    aspect-ratio: 4 / 3;
  }

  .hero-note {
    width: auto;
    margin: 12px 0 0;
  }

  .intro-band,
  .about-section,
  .about-principles,
  .service-grid,
  .scenario-grid,
  .news-grid,
  .process-list,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-item {
    min-height: auto;
    padding: 24px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-item:nth-child(3) {
    grid-column: auto;
    border-top: 0;
  }

  .intro-item:last-child {
    border-bottom: 0;
  }

  .section,
  .quote-band,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .page-hero {
    padding: 96px 20px 46px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-lead {
    font-size: 16px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 28px;
  }

  .about-main p:not(.eyebrow) {
    font-size: 16px;
  }

  .about-principles article {
    min-height: auto;
    padding: 18px;
  }

  .about-principles span {
    margin-bottom: 14px;
    font-size: 19px;
  }

  .about-principles strong {
    font-size: 23px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .news-card {
    min-height: auto;
    padding: 22px;
  }

  .news-card h3 {
    font-size: 26px;
  }

  .news-list-card {
    padding: 22px;
  }

  .news-list-toolbar {
    display: grid;
    gap: 10px;
    align-items: start;
  }

  .news-list-card h2,
  .article-content h2 {
    font-size: 30px;
  }

  .article-content p,
  .article-content li {
    font-size: 16px;
  }

  .service-index {
    margin-bottom: 34px;
  }

  .scenario-panel {
    min-height: auto;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-list li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list span {
    margin-bottom: 28px;
  }

  .quote-band p {
    font-size: 30px;
  }

  .contact-cards div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lead-form {
    padding: 20px;
  }

  .footer-meta {
    justify-items: start;
  }

  .friend-links {
    padding: 14px 16px;
  }

  .service-area {
    width: 100%;
    border-radius: 8px;
  }

  .footer-record {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .brand-text small {
    display: none;
  }

  h1 {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
