:root {
  --surface: #f6f7f9;
  --surface-2: #ffffff;
  --surface-3: #eef0f4;
  --text: #2b3440;
  --text-soft: #4a5563;
  --text-mute: #6b7480;
  --line: #d9dde4;
  --line-soft: #e6e9ee;
  --green: #2f9e6e;
  --green-soft: #e4f3ec;
  --amber: #e0a13c;
  --amber-soft: #f8eed9;
  --slateblue: #3f5b8b;
  --slateblue-soft: #e3e8f1;
  --focus: #1f7a55;
  --shadow-sm: 0 1px 2px rgba(43, 52, 64, 0.06), 0 1px 3px rgba(43, 52, 64, 0.08);
  --shadow-md: 0 4px 12px rgba(43, 52, 64, 0.08), 0 2px 4px rgba(43, 52, 64, 0.06);
  --shadow-lg: 0 12px 32px rgba(43, 52, 64, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1120px;
  --space: 1rem;
  --font-head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--slateblue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.4rem;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--text);
  color: #fff;
  padding: 0.7rem 1.1rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 247, 249, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--green) 0%, var(--slateblue) 100%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 0.74rem;
  color: var(--text-mute);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.path-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.path-nav a {
  display: flex;
  flex-direction: column;
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.2;
}

.path-nav a:hover {
  background: var(--surface-3);
  text-decoration: none;
  color: var(--text);
}

.path-nav a[aria-current="page"] {
  background: var(--slateblue-soft);
  color: var(--slateblue);
}

.path-step {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  font-weight: 700;
}

.path-nav a[aria-current="page"] .path-step {
  color: var(--slateblue);
}

.nav-cta {
  margin-left: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.78rem 1.4rem;
  border-radius: 11px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.2;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #28855d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--slateblue);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--slateblue);
  background: var(--slateblue-soft);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--surface-3);
}

.btn-sm {
  padding: 0.55rem 1rem;
  min-height: 44px;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(140deg, #2b3440 0%, #38465a 100%);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(26, 33, 43, 0.9) 0%, rgba(31, 43, 64, 0.78) 55%, rgba(31, 43, 64, 0.62) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4.5rem 0 4.75rem;
  min-height: 480px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: #fff;
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 38ch;
  margin-bottom: 1.7rem;
}

.alloc-board {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  backdrop-filter: blur(6px);
}

.alloc-board-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.alloc-buckets {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.alloc-bucket {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  color: var(--text);
}

.alloc-bucket .bucket-bar {
  width: 6px;
  align-self: stretch;
  border-radius: 6px;
  flex-shrink: 0;
}

.alloc-bucket .bucket-info {
  flex: 1;
  min-width: 0;
}

.alloc-bucket .bucket-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
}

.alloc-bucket .bucket-desc {
  font-size: 0.78rem;
  color: var(--text-mute);
}

.alloc-bucket .bucket-share {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
}

.bucket-green .bucket-bar {
  background: var(--green);
}
.bucket-green .bucket-share {
  color: var(--green);
}
.bucket-amber .bucket-bar {
  background: var(--amber);
}
.bucket-amber .bucket-share {
  color: #b87d1f;
}
.bucket-slate .bucket-bar {
  background: var(--slateblue);
}
.bucket-slate .bucket-share {
  color: var(--slateblue);
}

.alloc-note {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0.9rem 0 0;
}

.section {
  padding: 3.75rem 0;
}

.section-tight {
  padding: 2.75rem 0;
}

.section-alt {
  background: var(--surface-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-head {
  max-width: 60ch;
  margin-bottom: 2rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--green);
  margin-bottom: 0.7rem;
}

.section-head p {
  color: var(--text-soft);
  font-size: 1.06rem;
  margin-top: 0.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-head);
}

.chip-green {
  background: var(--green-soft);
  color: #1f7a55;
}
.chip-amber {
  background: var(--amber-soft);
  color: #99691b;
}
.chip-slate {
  background: var(--slateblue-soft);
  color: var(--slateblue);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.mission-points {
  display: grid;
  gap: 1rem;
}

.mission-point {
  display: flex;
  gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.15rem;
}

.section-alt .mission-point {
  background: var(--surface);
}

.mission-point .mp-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--green-soft);
  color: #1f7a55;
}

.mission-point:nth-child(2) .mp-icon {
  background: var(--amber-soft);
  color: #99691b;
}

.mission-point:nth-child(3) .mp-icon {
  background: var(--slateblue-soft);
  color: var(--slateblue);
}

.mission-point h3 {
  font-size: 1.08rem;
  margin: 0 0 0.3rem;
}

.mission-point p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-soft);
}

.about-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.section-alt .about-card {
  background: var(--surface);
}

.editor-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 1rem;
}

.editor-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.editor-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--slateblue-soft);
  color: var(--slateblue);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.editor-item:nth-child(2) .editor-avatar {
  background: var(--green-soft);
  color: #1f7a55;
}

.editor-item:nth-child(3) .editor-avatar {
  background: var(--amber-soft);
  color: #99691b;
}

.editor-role {
  font-size: 0.85rem;
  color: var(--text-mute);
}

.editor-name {
  font-family: var(--font-head);
  font-weight: 600;
}

.cards-adv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.adv-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.section-alt .adv-card {
  background: var(--surface);
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.adv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--green-soft);
  color: #1f7a55;
}

.adv-card:nth-child(2) .adv-icon {
  background: var(--amber-soft);
  color: #99691b;
}
.adv-card:nth-child(3) .adv-icon {
  background: var(--slateblue-soft);
  color: var(--slateblue);
}
.adv-card:nth-child(4) .adv-icon {
  background: var(--green-soft);
  color: #1f7a55;
}

.adv-card h3 {
  font-size: 1.12rem;
  margin: 0 0 0.45rem;
}

.adv-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.grid-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.article-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.article-card.featured {
  height: 100%;
}

.article-card .card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface-3);
  overflow: hidden;
}

.article-card.featured .card-media {
  aspect-ratio: 16 / 10;
}

.article-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .card-media img {
  transform: scale(1.04);
}

.card-chip {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
}

.card-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card.featured .card-body {
  padding: 1.6rem 1.7rem 1.8rem;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--text-mute);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.card-body h3,
.card-body h4 {
  margin: 0 0 0.5rem;
}

.article-card.featured .card-body h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
}

.card-body h4 {
  font-size: 1.1rem;
  font-family: var(--font-head);
  font-weight: 600;
}

.card-body p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin: 0 0 1.1rem;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green);
  align-self: flex-start;
}

.card-link svg {
  width: 1.05em;
  height: 1.05em;
  transition: transform 0.15s ease;
}

.card-link:hover {
  text-decoration: none;
}

.card-link:hover svg {
  transform: translateX(3px);
}

.article-list {
  display: grid;
  gap: 1rem;
}

.list-card {
  display: flex;
  gap: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.list-card:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-md);
}

.list-card .lc-media {
  width: 96px;
  height: 96px;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-3);
}

.list-card .lc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-card .lc-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.list-card .lc-meta {
  font-size: 0.74rem;
  color: var(--text-mute);
  margin-bottom: 0.25rem;
}

.list-card h4 {
  font-size: 1rem;
  margin: 0 0 0.3rem;
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.3;
}

.list-card h4 a {
  color: var(--text);
}

.list-card h4 a:hover {
  color: var(--green);
  text-decoration: none;
}

.list-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin: 0;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.8rem;
}

.glossary-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-sm);
}

.section-alt .glossary-card {
  background: var(--surface);
}

.glossary-card:nth-child(2) {
  border-left-color: var(--amber);
}
.glossary-card:nth-child(3) {
  border-left-color: var(--slateblue);
}
.glossary-card:nth-child(4) {
  border-left-color: var(--green);
}
.glossary-card:nth-child(5) {
  border-left-color: var(--amber);
}

.glossary-card dt {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.glossary-card dd {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.newsletter-band {
  background: linear-gradient(135deg, #2b3440 0%, #3f5b8b 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.newsletter-band h2 {
  color: #fff;
  margin: 0 0 0.7rem;
}

.newsletter-band p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.newsletter-form {
  display: grid;
  gap: 0.85rem;
}

.newsletter-form .field input {
  background: rgba(255, 255, 255, 0.95);
}

.consent-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
}

.consent-row input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--green);
}

.consent-row a {
  color: #fff;
  text-decoration: underline;
}

.cta-band {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.cta-band h2 {
  margin: 0 0 0.8rem;
}

.cta-band p {
  max-width: 52ch;
  margin: 0 auto 1.6rem;
  color: var(--text-soft);
  font-size: 1.06rem;
}

.cta-band .cta-row {
  justify-content: center;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--font-head);
}

.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--text);
  width: 100%;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 158, 110, 0.18);
}

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

.field .hint {
  font-size: 0.8rem;
  color: var(--text-mute);
}

.form-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1.1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
}

.contact-info-item .ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--green-soft);
  color: #1f7a55;
}

.contact-info-item:nth-child(2) .ci-icon {
  background: var(--amber-soft);
  color: #99691b;
}
.contact-info-item:nth-child(3) .ci-icon {
  background: var(--slateblue-soft);
  color: var(--slateblue);
}

.contact-info-item .ci-label {
  font-size: 0.8rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.contact-info-item .ci-value {
  font-weight: 500;
}

.contact-info-item a {
  color: var(--text);
}

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.map-actions {
  padding: 1rem 1.2rem;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.map-actions p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.article-shell {
  padding: 2.75rem 0 3.5rem;
}

.article-head {
  max-width: 760px;
  margin: 0 auto 2rem;
}

.breadcrumb {
  font-size: 0.86rem;
  color: var(--text-mute);
  margin-bottom: 1.1rem;
}

.breadcrumb a {
  color: var(--slateblue);
}

.breadcrumb span {
  margin: 0 0.35rem;
}

.article-head h1 {
  margin: 0.4rem 0 0.8rem;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mute);
  flex-wrap: wrap;
}

.article-hero-img {
  max-width: 920px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 8;
  background: var(--surface-3);
}

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

.article-body {
  max-width: 760px;
  margin: 0 auto;
}

.article-lead {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.article-body h2 {
  margin: 2.4rem 0 0.9rem;
  padding-top: 0.3rem;
}

.article-body h3 {
  margin: 1.8rem 0 0.7rem;
}

.article-body p {
  color: var(--text-soft);
}

.callout {
  background: var(--amber-soft);
  border: 1px solid #ecd6a8;
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.35rem;
  margin: 1.8rem 0;
}

.callout-title {
  font-family: var(--font-head);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #8a5e15;
}

.callout p {
  margin: 0;
  color: #6f5012;
  font-size: 0.95rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: var(--green-soft);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
}

.checklist li svg {
  width: 1.3em;
  height: 1.3em;
  color: #1f7a55;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.scenario-box {
  background: var(--slateblue-soft);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.5rem;
  margin: 1.6rem 0;
}

.scenario-box .sb-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slateblue);
  margin-bottom: 0.5rem;
}

.scenario-box p:last-child {
  margin-bottom: 0;
}

.prev-next {
  max-width: 760px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
}

.pn-link {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  transition: border-color 0.16s ease, transform 0.16s ease;
}

.pn-link:hover {
  border-color: var(--green);
  text-decoration: none;
  transform: translateY(-2px);
}

.pn-link.next {
  text-align: right;
  align-items: flex-end;
}

.pn-dir {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.pn-title {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
}

.page-head {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0 2.5rem;
}

.page-head h1 {
  margin: 0.3rem 0 0.7rem;
}

.page-head p {
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 1.08rem;
  margin: 0;
}

.legal-body {
  max-width: 800px;
}

.legal-body h2 {
  margin: 2.3rem 0 0.8rem;
  font-size: 1.4rem;
}

.legal-body h3 {
  margin: 1.6rem 0 0.6rem;
  font-size: 1.12rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-soft);
}

.legal-toc {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  margin-bottom: 2rem;
}

.legal-toc strong {
  font-family: var(--font-head);
  display: block;
  margin-bottom: 0.6rem;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.2rem;
  columns: 2;
  column-gap: 2rem;
}

.legal-toc a {
  color: var(--slateblue);
}

.updated-tag {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-mute);
  background: var(--surface-3);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.notice-box {
  background: var(--slateblue-soft);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  margin: 1.5rem 0;
}

.notice-box p {
  margin: 0;
  color: var(--slateblue);
  font-size: 0.95rem;
}

.site-footer {
  background: #232b35;
  color: rgba(255, 255, 255, 0.82);
  padding: 3.25rem 0 1.75rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.66);
  margin: 1rem 0 0;
  max-width: 36ch;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 1rem;
  font-family: var(--font-head);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 0.7rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-item svg {
  width: 1.15em;
  height: 1.15em;
  color: var(--green);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-news {
  margin-top: 1.2rem;
}

.footer-news form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.footer-news input {
  flex: 1;
  min-width: 150px;
  padding: 0.65rem 0.8rem;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.footer-news input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-news .consent-row {
  margin-top: 0.6rem;
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-bottom-links a,
.footer-bottom button {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.footer-bottom-links a:hover,
.footer-bottom button:hover {
  color: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 33, 43, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 1.25rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 2.2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-soft);
  color: #1f7a55;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
}

.modal h3 {
  margin: 0 0 0.6rem;
}

.modal p {
  color: var(--text-soft);
  margin: 0 0 1.6rem;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(43, 52, 64, 0.1);
  padding: 0.9rem 0;
  display: none;
}

.cookie-bar.show {
  display: block;
}

.cookie-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-bar-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
}

.cookie-bar-text a {
  color: var(--slateblue);
}

.cookie-bar-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-panel {
  position: fixed;
  inset: 0;
  background: rgba(26, 33, 43, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 260;
  padding: 1.25rem;
}

.cookie-panel.open {
  display: flex;
}

.cookie-panel-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 540px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-panel-card h3 {
  margin: 0 0 0.6rem;
}

.cookie-panel-card > p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.cookie-cat {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line-soft);
}

.cookie-cat h4 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
}

.cookie-cat p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--text-mute);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--line);
  border-radius: 999px;
  transition: background 0.2s ease;
}

.switch .slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.switch input:checked + .slider {
  background: var(--green);
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
}

.switch input:disabled + .slider {
  background: var(--green);
  opacity: 0.55;
  cursor: not-allowed;
}

.cookie-panel-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cookie-panel-actions .btn {
  flex: 1;
  min-width: 130px;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3.5rem 0;
  }
  .mission-grid,
  .grid-wrap,
  .newsletter-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }
  .primary-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface-2);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.3rem;
    transform: translateY(-130%);
    transition: transform 0.25s ease;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .primary-nav.open {
    transform: translateY(0);
  }
  .path-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }
  .path-nav a {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.85rem 0.9rem;
    min-height: 48px;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 0.6rem;
  }
  .nav-cta .btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 2.75rem 0;
  }
  .newsletter-band,
  .cta-band,
  .about-card {
    padding: 1.6rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .prev-next {
    grid-template-columns: 1fr;
  }
  .pn-link.next {
    text-align: left;
    align-items: flex-start;
  }
  .legal-toc ol {
    columns: 1;
  }
  .map-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .list-card .lc-media {
    width: 80px;
    height: 80px;
  }
}

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