:root {
  --ink: #15302b;
  --muted: #66766f;
  --forest: #1f3e75;
  --forest-2: #294f8f;
  --orange: #3a8f43;
  --orange-dark: #2f7637;
  --sand: #f2bd78;
  --cream: #fbf7ef;
  --paper: #fffdf9;
  --sage: #dfeae2;
  --mint: #e9f1ec;
  --line: #dce5df;
  --white: #ffffff;
  --shadow-sm: 0 8px 22px rgba(31, 62, 117, 0.08);
  --shadow-lg: 0 24px 70px rgba(31, 62, 117, 0.15);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --max: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

button {
  color: inherit;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(58, 143, 67, 0.6);
  outline-offset: 3px;
}

.prototype-banner {
  min-height: 34px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #4a2c1e;
  background: #f8dfbd;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-align: center;
}

.prototype-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(58, 143, 67, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 253, 249, 0.93);
  border-bottom: 1px solid rgba(31, 62, 117, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

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

.brand-logo {
  width: 48px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-logo-white {
  width: 56px;
  height: 46px;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  overflow: hidden;
}

.brand-mark span {
  position: absolute;
  width: 19px;
  height: 9px;
  border: 2px solid var(--sand);
  border-radius: 50% 50% 0 0;
  border-bottom: 0;
  transform-origin: 50% 100%;
}

.brand-mark span:nth-child(1) { transform: rotate(-60deg) translateY(-4px); }
.brand-mark span:nth-child(2) { transform: translateY(-5px); }
.brand-mark span:nth-child(3) { transform: rotate(60deg) translateY(-4px); }

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

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-more-trigger {
  position: relative;
  padding: 30px 0 28px;
  border: 0;
  background: transparent;
  color: #3d504a;
  font-size: 0.86rem;
  font-weight: 680;
  cursor: pointer;
  white-space: nowrap;
}

.desktop-nav > a::after,
.nav-more-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.active,
.nav-more-trigger:hover,
.nav-more.open .nav-more-trigger {
  color: var(--forest);
}

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

.nav-more {
  position: relative;
}

.nav-more-menu {
  position: absolute;
  top: 67px;
  right: -20px;
  width: 225px;
  display: grid;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 150ms ease;
}

.nav-more.open .nav-more-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-more-menu a {
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 650;
}

.nav-more-menu a:hover,
.nav-more-menu a.active {
  color: var(--forest);
  background: var(--mint);
}

.nav-more-menu span {
  width: 24px;
  color: var(--orange);
  font-size: 1.15rem;
  text-align: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-trigger {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.search-trigger span,
.search-field > span:not(.sr-only) {
  width: 15px;
  height: 15px;
  display: inline-block;
  border: 2px solid var(--forest);
  border-radius: 50%;
  position: relative;
}

.search-trigger span::after,
.search-field > span:not(.sr-only)::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2px;
  right: -5px;
  bottom: -2px;
  border-radius: 2px;
  background: var(--forest);
  transform: rotate(45deg);
}

.dashboard-link,
.button-primary,
.button-secondary,
.button-light {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.dashboard-link,
.button-primary {
  color: var(--white);
  background: var(--forest);
}

.dashboard-link:hover,
.button-primary:hover,
.button-light:hover,
.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.button-primary.orange {
  background: var(--orange);
}

.button-secondary {
  color: var(--forest);
  background: transparent;
  border-color: rgba(31, 62, 117, 0.28);
}

.button-light {
  color: var(--forest);
  background: var(--white);
}

.button-small {
  min-height: 36px;
  padding-inline: 14px;
  font-size: 0.78rem;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
}

.mobile-menu {
  display: none;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: start center;
  padding-top: 110px;
  opacity: 0;
  visibility: hidden;
  transition: 180ms ease;
}

.search-panel.open {
  opacity: 1;
  visibility: visible;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(9, 33, 28, 0.58);
  backdrop-filter: blur(6px);
}

.search-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 700px);
  padding: 30px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.search-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.search-dialog h2 {
  margin: 4px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.search-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

.search-field {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #aebdb5;
  border-radius: 14px;
  background: var(--white);
}

.search-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

kbd {
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: var(--cream);
  font-size: 0.68rem;
}

.quick-search {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.quick-search button {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  cursor: pointer;
}

main {
  min-height: 70vh;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 68px 0;
}

.section-cream { background: var(--cream); }
.section-mint { background: var(--mint); }
.section-forest {
  color: var(--white);
  background-color: var(--forest);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("assets/photos/communaute-sierra-leone.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 19px;
  height: 2px;
  background: currentColor;
}

.section-forest .eyebrow { color: var(--sand); }

.hero .eyebrow,
.hero .display-title em,
.section-forest .section-title em {
  color: #f2bd78;
}

.display-title,
.section-title,
.page-title,
.card-title,
.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.display-title {
  max-width: 780px;
  margin: 17px 0 22px;
  font-size: clamp(2.65rem, 6.3vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.display-title em,
.section-title em,
.page-title em {
  color: var(--orange);
  font-style: italic;
}

.section-title {
  max-width: 750px;
  margin: 12px 0 18px;
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-lead {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.section-forest .section-lead { color: rgba(255, 255, 255, 0.72); }

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

.section-heading > div:first-child { flex: 1; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: var(--forest);
  background: transparent;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform 150ms ease; }
.section-forest .text-link { color: var(--white); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(31, 62, 117, 0.97) 0%, rgba(31, 62, 117, 0.90) 48%, rgba(31, 62, 117, 0.68) 100%),
    url("assets/photos/collaboration-lagos.jpg") center 38% / cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 600px;
  height: 600px;
  right: -245px;
  top: -250px;
  border: 1px solid rgba(242, 189, 120, 0.22);
  box-shadow: 0 0 0 85px rgba(242, 189, 120, 0.035), 0 0 0 170px rgba(242, 189, 120, 0.025);
}

.hero::after {
  width: 300px;
  height: 300px;
  left: -180px;
  bottom: -180px;
  background: rgba(58, 143, 67, 0.22);
  filter: blur(2px);
}

.hero .container {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 70px;
  padding-top: 78px;
  padding-bottom: 86px;
}

.hero-copy {
  position: relative;
}

.hero-copy p {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.7vw, 1.17rem);
  line-height: 1.7;
}

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

.hero-note {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
}

.hero-note span:first-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--sand);
}

.hero-visual {
  position: relative;
  min-height: 475px;
  display: grid;
  place-items: center;
}

.network-orbit {
  position: absolute;
  width: min(92%, 440px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  animation: slow-spin 32s linear infinite;
}

.network-orbit::before,
.network-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(242, 189, 120, 0.22);
  border-radius: 50%;
}

.network-orbit::after { inset: 28%; }

@keyframes slow-spin { to { transform: rotate(360deg); } }

@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; }
}

.network-core {
  position: relative;
  z-index: 2;
  width: 172px;
  height: 172px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 18px rgba(242, 189, 120, 0.09), 0 25px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.network-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.network-node {
  position: absolute;
  z-index: 3;
  width: 118px;
  min-height: 68px;
  padding: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  font-weight: 750;
  text-align: center;
}

.network-node::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-bottom: 3px;
  border-radius: 50%;
  background: var(--orange);
}

.node-1 { top: 4%; left: 4%; }
.node-2 { top: 10%; right: -2%; }
.node-3 { bottom: 7%; right: 0; }
.node-4 { bottom: 0; left: 0; }

.hero-stats {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-stats .container {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 25px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: 0; }

.stat-item strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest);
  font-size: 2.15rem;
  font-weight: 500;
}

.stat-item span {
  max-width: 125px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.4;
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
  align-items: center;
}

.mission-visual {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(31, 62, 117, 0.08), rgba(31, 62, 117, 0.72)),
    url("assets/photos/collaboration-lagos.jpg") center / cover no-repeat;
  overflow: hidden;
}

.mission-visual::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -50px;
  top: -40px;
  border: 40px solid rgba(255, 255, 255, 0.25);
  border-radius: 46% 54% 55% 45%;
  transform: rotate(25deg);
}

.mission-path {
  position: absolute;
  inset: 35px;
  display: grid;
  align-content: space-between;
}

.mission-path-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mission-path-row:nth-child(2) { justify-content: center; }
.mission-path-row:nth-child(3) { justify-content: flex-end; }

.mission-person {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 42% 42%;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow-sm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-style: italic;
}

.mission-label {
  max-width: 170px;
  padding: 13px 15px;
  border-radius: 12px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 750;
}

.principle-list {
  display: grid;
  gap: 0;
  margin: 30px 0 34px;
  border-top: 1px solid var(--line);
}

.principle {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.principle-number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-dark);
  background: #fee8d8;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.principle h3 {
  margin: 0 0 4px;
  font-size: 0.94rem;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.cycle-shell {
  padding: 0;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.cycle-copy {
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.cycle-copy h3 {
  margin: 12px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.cycle-copy p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.cycle-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cycle-step {
  min-height: 152px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.cycle-step:nth-child(4n) { border-right: 0; }
.cycle-step:nth-child(n+5) { border-bottom: 0; }

.cycle-step:hover,
.cycle-step.active {
  background: var(--orange);
}

.cycle-step span {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.cycle-step.active span,
.cycle-step:hover span { color: var(--white); }

.cycle-step strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.cycle-detail {
  min-height: 72px;
  margin-top: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  color: var(--forest);
  background: var(--sand);
}

.cycle-detail strong { min-width: 135px; }
.cycle-detail p { margin: 0; font-size: 0.86rem; line-height: 1.5; }

.audience-grid,
.project-grid,
.org-grid,
.territory-grid,
.opportunity-grid,
.service-grid,
.resource-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-grid { grid-template-columns: repeat(4, 1fr); }

.audience-card,
.project-card,
.org-card,
.territory-card,
.opportunity-card,
.service-card,
.resource-card,
.partner-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.audience-card:hover,
.project-card:hover,
.org-card:hover,
.territory-card:hover,
.opportunity-card:hover,
.service-card:hover,
.resource-card:hover,
.partner-card:hover {
  transform: translateY(-5px);
  border-color: #c3d3ca;
  box-shadow: var(--shadow-sm);
}

.audience-card {
  min-height: 265px;
  padding: 27px;
  display: flex;
  flex-direction: column;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--forest);
  background: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.audience-card:nth-child(2) .icon-box { background: #fee8d8; color: var(--orange-dark); }
.audience-card:nth-child(3) .icon-box { background: #f8e7c8; color: #8b571d; }
.audience-card:nth-child(4) .icon-box { background: #e7e6f1; color: #565175; }

.audience-card h3 {
  margin: 22px 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.audience-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.6;
}

.audience-card .text-link { margin-top: auto; font-size: 0.78rem; }

.project-card {
  overflow: hidden;
}

.project-cover {
  position: relative;
  min-height: 185px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, #285a4f, #9fc0ae);
}

.project-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card:hover .project-image {
  transform: scale(1.045);
}

.project-card:nth-child(2) .project-cover { background: linear-gradient(145deg, #c66030, #efb276); }
.project-card:nth-child(3) .project-cover { background: linear-gradient(145deg, #37345e, #aaa6d0); }

.project-cover::before,
.project-cover::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.project-cover::before {
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 35, 29, 0.02) 20%, rgba(9, 35, 29, 0.74) 100%);
}

.project-cover::after { display: none; }

.project-location {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.67rem;
  font-weight: 750;
}

.project-body { padding: 23px; }

.meta-row,
.tag-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.tag,
.status-pill,
.demo-pill,
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 790;
  line-height: 1;
}

.tag,
.category-pill { color: var(--forest); background: var(--mint); }
.status-pill { color: #285544; background: #dff1e7; }
.status-pill.orange { color: #8c451e; background: #fde5d8; }
.status-pill.gold { color: #75521d; background: #f8e8c6; }
.demo-pill { color: #5d596e; background: #ecebf4; }

.card-title {
  margin: 16px 0 10px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.card-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.progress-wrap { margin-top: 21px; }
.progress-label { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.68rem; font-weight: 700; }
.progress-bar { height: 6px; margin-top: 8px; border-radius: 6px; background: #e7ece9; overflow: hidden; }
.progress-bar span { display: block; height: 100%; border-radius: inherit; background: var(--orange); }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 55px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--orange);
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -185px;
  border: 35px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.cta-band h2 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.cta-band p { position: relative; z-index: 1; margin: 0; color: rgba(255, 255, 255, 0.82); }
.cta-band .button-light { position: relative; z-index: 1; }

.page-hero {
  padding: 76px 0 68px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
}

.page-title {
  max-width: 850px;
  margin: 14px 0 16px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.page-intro {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.page-hero-aside {
  min-width: 210px;
  padding: 20px;
  border-left: 1px solid #bfcac4;
}

.page-hero-aside strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest);
  font-size: 2rem;
  font-weight: 500;
}

.page-hero-aside span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.toolbar {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 720;
  cursor: pointer;
}

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

.result-count { color: var(--muted); font-size: 0.76rem; font-weight: 650; }

.org-card,
.partner-card,
.opportunity-card,
.service-card,
.resource-card,
.territory-card {
  padding: 24px;
}

.org-head,
.partner-head,
.resource-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.avatar.orange { background: var(--orange); }
.avatar.gold { color: var(--forest); background: var(--sand); }
.avatar.purple { background: #605b83; }

.org-card h3,
.partner-card h3,
.resource-card h3,
.service-card h3,
.opportunity-card h3,
.territory-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.25;
}

.org-card .card-copy,
.partner-card .card-copy,
.resource-card .card-copy { margin: 17px 0 20px; }

.card-footer {
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
}

.territory-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(155deg, #1b5146, #8caf9c);
}

.territory-card:nth-child(2) { background: linear-gradient(155deg, #c66030, #e9b883); }
.territory-card:nth-child(3) { background: linear-gradient(155deg, #41406c, #a4a1c2); }

.territory-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 210px;
  top: -65px;
  right: -60px;
  border: 32px solid rgba(255, 255, 255, 0.12);
  border-radius: 42% 58% 46% 54%;
  transform: rotate(23deg);
}

.territory-card > * { position: relative; z-index: 1; }
.territory-card h3 { margin: 13px 0 7px; font-size: 1.65rem; }
.territory-card p { margin: 0 0 18px; color: rgba(255, 255, 255, 0.76); font-size: 0.82rem; line-height: 1.5; }
.territory-stats { display: flex; gap: 18px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.22); }
.territory-stats strong { display: block; font-size: 1rem; }
.territory-stats span { font-size: 0.66rem; color: rgba(255,255,255,.68); }

.opportunity-card { display: flex; flex-direction: column; }
.opportunity-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.deadline { color: var(--orange-dark); font-size: 0.68rem; font-weight: 800; }
.opportunity-card h3 { margin: 20px 0 10px; font-size: 1.35rem; }
.opportunity-card .card-copy { margin-bottom: 22px; }
.opportunity-card .card-footer { margin-top: auto; }
.amount { font-family: Georgia, "Times New Roman", serif; color: var(--forest); font-size: 1.25rem; }

.service-card { min-height: 260px; display: flex; flex-direction: column; }
.service-card .icon-box { margin-bottom: 24px; }
.service-card h3 { font-size: 1.35rem; }
.service-card p { margin: 12px 0 22px; color: var(--muted); font-size: 0.84rem; line-height: 1.6; }
.service-card .text-link { margin-top: auto; }

.resource-card { min-height: 225px; display: flex; flex-direction: column; }
.resource-card .resource-type { margin-left: auto; }
.resource-card .card-footer { margin-top: auto; }

.profile-switcher {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 25px;
}

.profile-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
}

.profile-tab {
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--muted);
  text-align: left;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.profile-tab span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint);
}

.profile-tab.active,
.profile-tab:hover {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.profile-tab.active span,
.profile-tab:hover span { color: var(--forest); background: var(--sand); }

.profile-panel {
  min-height: 340px;
  padding: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
}

.profile-panel h3 {
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.profile-panel > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.permission-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.permission-item {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.06);
  font-size: 0.78rem;
}

.permission-item span { color: var(--sand); }

.dashboard-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 720px;
  background: #f4f6f4;
}

.dashboard-sidebar {
  padding: 32px 20px;
  color: var(--white);
  background: var(--forest);
}

.dashboard-user {
  padding: 0 8px 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.dashboard-user .avatar { width: 40px; height: 40px; background: var(--sand); color: var(--forest); }
.dashboard-user strong { display: block; font-size: 0.8rem; }
.dashboard-user small { color: rgba(255,255,255,.55); font-size: 0.66rem; }
.sidebar-nav { display: grid; gap: 5px; margin-top: 24px; }
.sidebar-nav button { padding: 12px 13px; border: 0; border-radius: 9px; color: rgba(255,255,255,.7); background: transparent; text-align: left; font-size: .75rem; font-weight: 680; cursor: pointer; }
.sidebar-nav button.active, .sidebar-nav button:hover { color: var(--white); background: rgba(255,255,255,.1); }

.dashboard-main { min-width: 0; padding: 36px; }
.dashboard-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.dashboard-head h1 { margin: 4px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 2.3rem; font-weight: 500; }
.dashboard-head p { margin: 0; color: var(--muted); font-size: .78rem; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.metric-card { padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.metric-card span { color: var(--muted); font-size: .68rem; font-weight: 700; }
.metric-card strong { display: block; margin-top: 10px; font-family: Georgia, "Times New Roman", serif; color: var(--forest); font-size: 2rem; font-weight: 500; }
.metric-card small { color: #43815e; font-size: .64rem; }
.dashboard-row { margin-top: 16px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; }
.dashboard-card { padding: 23px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.dashboard-card h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; font-weight: 500; }
.mini-chart { height: 210px; margin-top: 22px; display: flex; align-items: flex-end; gap: 15px; border-bottom: 1px solid var(--line); }
.bar { flex: 1; min-width: 18px; position: relative; border-radius: 5px 5px 0 0; background: var(--sage); }
.bar.active { background: var(--orange); }
.bar span { position: absolute; bottom: -23px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: .62rem; }
.activity-list { display: grid; gap: 0; margin-top: 12px; }
.activity { padding: 14px 0; display: grid; grid-template-columns: 32px 1fr; gap: 10px; border-bottom: 1px solid var(--line); }
.activity:last-child { border-bottom: 0; }
.activity > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--orange-dark); background: #fee8d8; font-size: .75rem; }
.activity p { margin: 0; color: var(--ink); font-size: .73rem; line-height: 1.4; }
.activity small { color: var(--muted); font-size: .62rem; }

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.value-card { padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.value-card span { color: var(--orange); font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; }
.value-card h3 { margin: 15px 0 7px; font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; font-weight: 500; }
.value-card p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.quote { margin: 0; font-size: clamp(1.8rem, 4vw, 3.1rem); line-height: 1.18; color: var(--forest); }
.quote em { color: var(--orange); }

.contact-card { padding: 32px; border-radius: var(--radius); background: var(--forest); color: var(--white); }
.contact-card h2 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 500; }
.contact-card > p { margin: 0 0 25px; color: rgba(255,255,255,.68); line-height: 1.6; }
.contact-item { padding: 16px 0; display: flex; gap: 13px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-item span:first-child { color: var(--sand); }
.contact-item strong { display: block; font-size: .78rem; }
.contact-item small { color: rgba(255,255,255,.6); }

.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field label { font-size: .75rem; font-weight: 750; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; padding: 13px 14px; border: 1px solid #cbd6d0; border-radius: 11px; color: var(--ink); background: var(--white); outline: 0; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(58,143,67,.12); }
.form-field textarea { min-height: 135px; resize: vertical; }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.45; }

.empty-state {
  padding: 65px 24px;
  border: 1px dashed #bdcbc4;
  border-radius: var(--radius);
  text-align: center;
}

.empty-state h3 { margin: 0 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; font-weight: 500; }
.empty-state p { margin: 0; color: var(--muted); }

.site-footer {
  padding: 70px 0 25px;
  color: rgba(255, 255, 255, 0.72);
  background: #1f3e75;
}

.footer-top,
.footer-bottom {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}

.brand-footer .brand-copy strong { color: var(--white); }
.brand-footer .brand-copy small { color: rgba(255,255,255,.55); }
.footer-intro p { max-width: 380px; margin: 24px 0 0; line-height: 1.65; font-size: .88rem; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links h3 { margin: 0 0 16px; color: var(--sand); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-links a { display: block; margin: 10px 0; font-size: .79rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { margin-top: 50px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .68rem; }

.photo-credits {
  width: min(calc(100% - 40px), var(--max));
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.62rem;
  line-height: 1.6;
}

.photo-credits a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.24);
  text-underline-offset: 2px;
}

.photo-credits a:hover { color: var(--white); }

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 160;
  max-width: 340px;
  padding: 14px 17px;
  border-radius: 12px;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow-lg);
  font-size: 0.78rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 180ms ease;
}

.toast.show { opacity: 1; visibility: visible; transform: translateY(0); }

.route-enter { animation: route-in 280ms ease both; }
@keyframes route-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav > a:nth-of-type(3),
  .desktop-nav > a:nth-of-type(4) { display: none; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; }
  .header-inner { width: min(calc(100% - 28px), var(--max)); }
  .desktop-nav, .dashboard-link { display: none; }
  .section-forest { background-attachment: scroll; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: grid; }
  .mobile-menu {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    z-index: 79;
    padding: 26px 24px 40px;
    display: grid;
    align-content: start;
    gap: 0;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 180ms ease;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }
  .mobile-menu a.active { color: var(--orange-dark); }
  .hero .container { grid-template-columns: 1fr; gap: 20px; padding-top: 62px; }
  .hero-visual { min-height: 370px; }
  .network-orbit { width: min(82%, 360px); }
  .network-core { width: 142px; height: 142px; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat-item:first-child, .stat-item { padding: 20px; }
  .mission-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .mission-visual { min-height: 410px; }
  .cycle-shell { grid-template-columns: 1fr; }
  .cycle-copy { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .project-grid, .org-grid, .territory-grid, .opportunity-grid, .service-grid, .resource-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero-aside { border-left: 0; border-top: 1px solid #bfcac4; }
  .profile-switcher { grid-template-columns: 1fr; }
  .profile-tabs { grid-template-columns: repeat(2, 1fr); }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .dashboard-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 580px) {
  .prototype-banner { font-size: .66rem; }
  .brand-copy small { display: none; }
  .search-trigger { width: 38px; height: 38px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 68px 0; }
  .section.compact { padding: 50px 0; }
  .display-title { font-size: clamp(2.55rem, 14vw, 4.1rem); }
  .hero .container { padding-bottom: 62px; }
  .hero-visual { min-height: 320px; }
  .network-node { width: 95px; min-height: 58px; font-size: .65rem; }
  .node-1 { left: 0; }
  .node-2 { right: 0; }
  .node-3 { right: 0; }
  .network-core { width: 122px; height: 122px; }
  .hero-stats .container { width: 100%; }
  .stat-item strong { font-size: 1.7rem; }
  .mission-visual { min-height: 360px; }
  .mission-path { inset: 22px; }
  .mission-person { width: 72px; height: 72px; font-size: 1.3rem; }
  .mission-label { max-width: 150px; padding: 10px 12px; font-size: .68rem; }
  .section-heading { align-items: start; flex-direction: column; }
  .cycle-copy { padding: 28px; }
  .cycle-steps { grid-template-columns: repeat(2, 1fr); }
  .cycle-step:nth-child(2n) { border-right: 0; }
  .cycle-step:nth-child(4) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .cycle-detail { align-items: flex-start; flex-direction: column; }
  .audience-grid,
  .project-grid,
  .org-grid,
  .territory-grid,
  .opportunity-grid,
  .service-grid,
  .resource-grid,
  .partner-grid,
  .about-values { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 28px; grid-template-columns: 1fr; align-items: start; }
  .page-hero { padding: 56px 0 50px; }
  .toolbar { align-items: start; flex-direction: column; }
  .profile-tabs { grid-template-columns: 1fr; }
  .profile-panel { padding: 28px; }
  .permission-grid { grid-template-columns: 1fr; }
  .dashboard-main { padding: 24px 14px; }
  .dashboard-head { align-items: flex-start; flex-direction: column; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-card { padding: 15px; }
  .metric-card strong { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 25px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .search-dialog { padding: 23px; }
  .search-field kbd { display: none; }
}
