:root {
  --forest: #0b3f34;
  --forest-dark: #062d26;
  --leaf: #1f7a55;
  --leaf-light: #67a872;
  --sun: #f4d62b;
  --coral: #e75b3c;
  --ink: #16221e;
  --muted: #607069;
  --mist: #edf3ef;
  --line: #d9e2dc;
  --paper: #ffffff;
  --content: 1180px;
  --header-h: 78px;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  color: white;
  background: var(--forest-dark);
}

.skip-link:focus {
  top: 10px;
}

.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 63, 52, 0.11);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1320px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  border: 2px solid var(--forest);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  position: absolute;
  content: "";
  display: block;
  background: var(--leaf);
  transform-origin: bottom center;
}

.brand-mark::before {
  width: 9px;
  height: 18px;
  left: 11px;
  top: 8px;
  border-radius: 9px 2px 9px 2px;
  transform: rotate(-34deg);
}

.brand-mark::after {
  width: 9px;
  height: 20px;
  right: 10px;
  top: 6px;
  border-radius: 2px 9px 2px 9px;
  transform: rotate(35deg);
}

.brand-mark i {
  width: 2px;
  height: 15px;
  left: 17px;
  bottom: 5px;
  background: var(--forest);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  content: "";
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: white;
}

.search-trigger:hover {
  border-color: var(--forest);
}

.search-trigger span {
  font-size: 22px;
  line-height: 1;
}

.search-trigger b {
  font-size: 13px;
}

.menu-trigger {
  display: none;
  align-content: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: var(--forest);
}

.menu-trigger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background: white;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-trigger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-trigger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-trigger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  padding: 20px 24px 28px;
  background: white;
  border-bottom: 4px solid var(--sun);
  box-shadow: 0 22px 45px rgba(7, 45, 38, 0.16);
}

.mobile-menu a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 800;
}

.mobile-menu a.active {
  color: var(--leaf);
}

main {
  min-height: 70vh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  content: "";
  background: var(--sun);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading h2,
.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
  font-weight: 900;
}

.section-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--sun);
  font-weight: 800;
}

.text-link:hover {
  color: var(--leaf);
}

.primary-btn,
.secondary-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.primary-btn {
  color: var(--forest-dark);
  background: var(--sun);
}

.secondary-btn {
  color: white;
  background: var(--forest);
}

.outline-btn {
  color: white;
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
}

.primary-btn:hover,
.secondary-btn:hover,
.outline-btn:hover {
  transform: translateY(-2px);
}

.outline-btn:hover {
  color: var(--forest-dark);
  background: white;
}

.hero {
  position: relative;
  height: clamp(540px, calc(100svh - 124px), 760px);
  min-height: 540px;
  overflow: hidden;
  color: white;
  background: var(--forest-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(4, 31, 25, 0.48);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 48px 0 90px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 800;
}

.hero-kicker::before {
  width: 42px;
  height: 4px;
  content: "";
  background: var(--sun);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(54px, 8vw, 108px);
  line-height: 1.02;
  font-weight: 900;
}

.hero h2 {
  max-width: 740px;
  margin: 20px 0 8px;
  font-size: clamp(24px, 3.1vw, 42px);
  line-height: 1.2;
}

.hero-copy {
  max-width: 600px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

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

.hero-pagination {
  position: absolute;
  right: max(24px, calc((100vw - var(--content)) / 2));
  bottom: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-pagination button {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
}

.hero-pagination button.active {
  width: 62px;
  background: var(--sun);
}

.mission-strip {
  background: var(--sun);
}

.mission-strip .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 92px;
}

.mission-strip strong {
  color: var(--forest-dark);
  font-size: 19px;
}

.mission-strip p {
  margin: 0;
  color: #384237;
}

.mission-strip a {
  padding: 8px 0;
  border-bottom: 2px solid var(--forest-dark);
  color: var(--forest-dark);
  font-weight: 800;
}

.business-section,
.news-section,
.resource-section,
.partner-section,
.content-section {
  padding: 104px 0;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.business-card {
  position: relative;
  min-height: 330px;
  padding: 34px 28px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  transition: background-color 180ms ease, color 180ms ease;
}

.business-card:hover {
  color: white;
  background: var(--forest);
}

.business-number {
  display: block;
  margin-bottom: 62px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.business-card:hover .business-number {
  color: var(--sun);
}

.business-card h3 {
  margin: 0 0 16px;
  font-size: 23px;
  line-height: 1.25;
}

.business-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.business-card:hover p {
  color: rgba(255, 255, 255, 0.76);
}

.business-arrow {
  position: absolute;
  right: 26px;
  bottom: 24px;
  font-size: 25px;
}

.news-section {
  background: var(--mist);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  background: white;
  box-shadow: 0 15px 35px rgba(15, 57, 47, 0.08);
}

.news-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #cbd8d1;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.news-card:hover .news-image img {
  transform: scale(1.035);
}

.date-block {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: white;
  background: var(--coral);
}

.date-block strong {
  font-size: 25px;
  line-height: 1;
}

.date-block small {
  font-size: 10px;
}

.news-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.category {
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
}

.news-body h3 {
  margin: 10px 0 12px;
  font-size: 21px;
  line-height: 1.42;
}

.news-body p {
  display: -webkit-box;
  margin: 0 0 24px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-body button {
  align-self: flex-start;
  margin-top: auto;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 2px solid var(--sun);
  color: var(--ink);
  background: transparent;
  font-weight: 800;
}

.resource-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.resource-intro {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.resource-intro p:not(.eyebrow) {
  max-width: 440px;
  color: var(--muted);
}

.resource-list {
  border-top: 1px solid var(--line);
}

.resource-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.resource-type {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: white;
  background: var(--forest);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.resource-row h3 {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.4;
}

.resource-meta {
  color: var(--muted);
  font-size: 12px;
}

.resource-row button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  background: white;
  font-size: 22px;
}

.resource-row button:hover {
  color: white;
  border-color: var(--forest);
  background: var(--forest);
}

.partner-section {
  padding-top: 78px;
  background: #f8faf8;
  border-top: 1px solid var(--line);
}

.partner-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.partner-heading h2 {
  margin: 0;
  font-size: 25px;
}

.partner-heading span {
  color: var(--muted);
  font-size: 12px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-item {
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #53615b;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.page-hero {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  color: white;
  background: var(--forest-dark);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(4, 31, 25, 0.57);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 410px;
  padding-bottom: 66px;
}

.page-hero .eyebrow {
  color: white;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.08;
}

.page-hero p:last-child {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.statement-grid blockquote {
  margin: 0;
  padding-left: 24px;
  border-left: 5px solid var(--sun);
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.35;
  font-weight: 900;
}

.prose p,
p.prose {
  margin: 0 0 18px;
  color: #405048;
  font-size: 16px;
}

.value-band {
  padding: 88px 0;
  color: white;
  background: var(--forest);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.18);
}

.value-item {
  min-height: 240px;
  padding: 34px;
  background: var(--forest);
}

.value-item span {
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
}

.value-item h3 {
  margin: 30px 0 12px;
  font-size: 26px;
}

.value-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.org-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
}

.org-chart {
  display: grid;
  gap: 14px;
}

.org-node {
  padding: 20px 22px;
  border-left: 5px solid var(--leaf);
  background: var(--mist);
}

.org-node strong,
.org-node span {
  display: block;
}

.org-node span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.team-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: white;
  background: var(--forest);
  font-size: 20px;
  font-weight: 900;
}

.team-card h3 {
  margin: 0;
  font-size: 18px;
}

.team-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.listing-wrap {
  padding: 70px 0 110px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter-bar button {
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: white;
  font-size: 13px;
  font-weight: 800;
}

.filter-bar button.active,
.filter-bar button:hover {
  color: white;
  border-color: var(--forest);
  background: var(--forest);
}

.listing-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}

.resource-card::before {
  width: 44px;
  height: 6px;
  margin-bottom: 44px;
  content: "";
  background: var(--sun);
}

.resource-card h3 {
  margin: 11px 0 14px;
  font-size: 21px;
  line-height: 1.42;
}

.resource-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.resource-card button {
  align-self: flex-start;
  margin-top: auto;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 2px solid var(--sun);
  background: transparent;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item strong {
  font-size: 13px;
}

.contact-item span,
.contact-item a {
  color: var(--muted);
}

.contact-form {
  padding: 38px;
  border-radius: 6px;
  background: var(--mist);
}

.contact-form h2 {
  margin: 0 0 26px;
  font-size: 27px;
}

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

.form-field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cad7cf;
  border-radius: 3px;
  outline: none;
  background: white;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(31, 122, 85, 0.12);
}

.cooperation-band {
  padding: 84px 0;
  color: white;
  background: var(--forest);
}

.cooperation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.cooperation-item {
  min-height: 210px;
  padding: 32px;
  background: var(--forest);
}

.cooperation-item span {
  color: var(--sun);
  font-weight: 900;
}

.cooperation-item h3 {
  margin: 42px 0 10px;
  font-size: 22px;
}

.cooperation-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer {
  color: white;
  background: var(--forest-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 70px;
  padding-top: 68px;
  padding-bottom: 54px;
}

.brand-light .brand-mark {
  border-color: white;
}

.brand-light .brand-mark i {
  background: white;
}

.brand-light .brand-copy small {
  color: rgba(255, 255, 255, 0.57);
}

.footer-identity > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-identity .official-name {
  margin-top: 7px;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.footer-links div,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong,
.footer-social > strong {
  margin-bottom: 10px;
  color: var(--sun);
  font-size: 13px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-links a:hover {
  color: white;
}

.qr-list {
  display: flex;
  gap: 12px;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  width: 82px;
  height: 92px;
  color: var(--forest-dark);
  background: white;
}

.qr-placeholder span {
  font-size: 23px;
  font-weight: 900;
}

.qr-placeholder small {
  margin-top: -16px;
  color: var(--muted);
  font-size: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

dialog {
  color: var(--ink);
}

dialog::backdrop {
  background: rgba(4, 31, 25, 0.65);
  backdrop-filter: blur(4px);
}

.search-dialog {
  width: min(calc(100% - 32px), 680px);
  padding: 28px;
  border: 0;
  border-radius: 6px;
}

.dialog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dialog-bar strong {
  font-size: 23px;
}

.dialog-bar button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  font-size: 26px;
  line-height: 1;
}

.search-dialog label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.search-dialog input {
  width: 100%;
  height: 54px;
  padding: 0 14px;
  border: 2px solid var(--forest);
  border-radius: 3px;
  outline: none;
}

.search-results {
  max-height: 390px;
  margin-top: 18px;
  overflow-y: auto;
}

.search-result {
  display: block;
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: white;
}

.search-result span {
  display: block;
  color: var(--leaf);
  font-size: 11px;
  font-weight: 800;
}

.search-result strong {
  display: block;
  margin-top: 4px;
}

.search-empty {
  padding: 28px 0;
  color: var(--muted);
  text-align: center;
}

.detail-dialog {
  width: min(calc(100% - 32px), 820px);
  max-height: min(86vh, 900px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
}

.detail-bar {
  position: sticky;
  top: 0;
  z-index: 2;
  margin: 0;
  padding: 14px 20px;
  color: white;
  background: var(--forest);
}

.detail-bar button {
  color: white;
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
}

#detail-content {
  max-height: calc(86vh - 68px);
  padding: 38px 46px 52px;
  overflow-y: auto;
}

#detail-content .detail-image {
  width: calc(100% + 92px);
  max-width: none;
  height: 320px;
  margin: -38px -46px 34px;
  object-fit: cover;
}

#detail-content h1 {
  margin: 8px 0 12px;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.3;
}

#detail-content .detail-meta {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

#detail-content p {
  color: #3f4e47;
}

#detail-content .source-link {
  margin-top: 20px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 400;
  max-width: min(90vw, 520px);
  padding: 12px 18px;
  color: white;
  border-radius: 4px;
  background: var(--forest-dark);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-h: 70px;
  }

  .desktop-nav,
  .search-trigger b {
    display: none;
  }

  .menu-trigger {
    display: block;
  }

  .search-trigger {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

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

  .news-grid,
  .resource-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-layout,
  .statement-grid,
  .org-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .resource-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 32px), var(--content));
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 8px;
  }

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

  .nav-actions {
    margin-left: auto;
  }

  .hero {
    height: clamp(530px, calc(100svh - 108px), 650px);
    min-height: 530px;
  }

  .hero-content {
    justify-content: end;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .hero h2 {
    font-size: 25px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-pagination {
    right: 16px;
    bottom: 28px;
  }

  .mission-strip .container {
    grid-template-columns: 1fr auto;
    gap: 6px 18px;
    padding: 17px 0;
  }

  .mission-strip strong {
    grid-column: 1 / -1;
  }

  .mission-strip p {
    font-size: 12px;
  }

  .business-section,
  .news-section,
  .resource-section,
  .partner-section,
  .content-section {
    padding: 72px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .section-title {
    font-size: 34px;
  }

  .section-heading p {
    margin-top: 16px;
  }

  .business-grid,
  .news-grid,
  .resource-cards,
  .partner-grid,
  .value-grid,
  .team-grid,
  .cooperation-grid,
  .footer-main,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: 240px;
  }

  .business-number {
    margin-bottom: 34px;
  }

  .resource-row {
    grid-template-columns: 58px 1fr auto;
    gap: 14px;
  }

  .resource-type {
    width: 52px;
    height: 52px;
    font-size: 10px;
  }

  .resource-row h3 {
    font-size: 15px;
  }

  .partner-item {
    min-height: 90px;
  }

  .page-hero,
  .page-hero .container {
    min-height: 350px;
  }

  .page-hero .container {
    padding-bottom: 45px;
  }

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

  .statement-grid blockquote {
    font-size: 28px;
  }

  .value-item,
  .cooperation-item {
    min-height: 0;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-item {
    grid-template-columns: 72px 1fr;
  }

  .footer-main {
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  #detail-content {
    padding: 28px 20px 42px;
  }

  #detail-content .detail-image {
    width: calc(100% + 40px);
    height: 220px;
    margin: -28px -20px 28px;
  }
}

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

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

  .primary-btn,
  .outline-btn {
    padding: 0 13px;
    font-size: 12px;
  }
}
