:root {
  --green: #1f6f5b;
  --blue: #1e4e8c;
  --green-light: #a8d5ba;
  --off-white: #f7f4ec;
  --sand: #d8c6a3;
  --text: #1f2a2e;
  --muted: #5c6a70;
  --accent: #d96c4a;
  --white: #ffffff;
  --line: rgba(31, 42, 46, 0.14);
  --shadow: 0 18px 42px rgba(31, 42, 46, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(31, 42, 46, 0.08);
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(31, 111, 91, 0.1);
  color: var(--green);
}

.section-band {
  position: relative;
  overflow: hidden;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  min-height: calc(100svh - 72px);
  align-items: center;
  padding: clamp(68px, 9vw, 110px) clamp(18px, 6vw, 76px);
  isolation: isolate;
  background:
    linear-gradient(110deg, rgba(247, 244, 236, 0.98) 0%, rgba(247, 244, 236, 0.92) 58%, rgba(168, 213, 186, 0.24) 100%),
    linear-gradient(135deg, rgba(216, 198, 163, 0.18), rgba(31, 111, 91, 0.06));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-logo {
  display: block;
  width: min(620px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(31, 42, 46, 0.08));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 12px;
  font-size: clamp(3.3rem, 8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-title {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--green);
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.36rem;
  line-height: 1.16;
}

.hero-slogan {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(1.18rem, 2vw, 1.72rem);
  font-weight: 800;
  line-height: 1.15;
}

.hero-copy,
.lead-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 28px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(31, 111, 91, 0.22);
}

.button-primary:hover {
  background: #185848;
}

.button-secondary {
  border: 1px solid rgba(30, 78, 140, 0.22);
  background: rgba(255, 255, 255, 0.62);
  color: var(--blue);
}

.button-secondary:hover {
  border-color: rgba(30, 78, 140, 0.46);
  background: var(--white);
}

.button-outline {
  border: 1px solid rgba(31, 111, 91, 0.3);
  background: rgba(255, 255, 255, 0.46);
  color: var(--green);
}

.button-outline:hover {
  border-color: var(--green);
  background: rgba(31, 111, 91, 0.1);
}

.intro,
.participation {
  padding: clamp(64px, 9vw, 110px) 0;
}

.two-column,
.form-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.strong-line {
  color: var(--green);
  font-weight: 900;
}

.impact {
  padding: clamp(58px, 8vw, 96px) 0;
  background: var(--text);
  color: var(--white);
}

.impact .eyebrow {
  color: var(--green-light);
}

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

.impact h2 {
  max-width: 820px;
  color: var(--white);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.impact-card {
  min-height: 184px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.impact-card strong {
  display: block;
  margin-bottom: 22px;
  color: var(--green-light);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.impact-card span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.ai-section {
  padding: clamp(64px, 9vw, 110px) 0;
  background:
    linear-gradient(135deg, rgba(168, 213, 186, 0.26), rgba(247, 244, 236, 0.92) 42%, rgba(30, 78, 140, 0.1)),
    var(--off-white);
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.ai-layout p {
  color: var(--muted);
  font-size: 1.05rem;
}

.ai-note {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 12px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text) !important;
  font-weight: 800;
}

.ai-tool {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
  align-items: stretch;
}

.ai-form,
.ai-result {
  border: 1px solid rgba(31, 42, 46, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(31, 42, 46, 0.09);
}

.ai-form {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.ai-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.ai-form input,
.ai-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 42, 46, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fbfaf6;
  color: var(--text);
  resize: vertical;
}

.ai-form .ai-submit {
  justify-self: start;
  align-self: start;
  min-width: 172px;
  margin-top: 4px;
}

.ai-form .ai-submit:disabled {
  cursor: wait;
  opacity: 0.82;
}

.ai-form input:focus,
.ai-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(31, 111, 91, 0.14);
}

.ai-result {
  min-height: 100%;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(168, 213, 186, 0.18), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.ai-result h3 {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 1.72rem;
}

.ai-result p {
  margin-bottom: 14px;
}

.ai-result .tag-list {
  margin-bottom: 18px;
}

.ai-result .tag {
  border: 1px solid rgba(31, 111, 91, 0.16);
  background: rgba(31, 111, 91, 0.08);
  color: var(--green);
}

.ai-summary {
  display: grid;
  gap: 8px;
  margin: 14px 0 16px;
}

.ai-summary p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(31, 42, 46, 0.08);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.72);
}

.ai-summary strong {
  color: var(--blue);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.ai-summary span {
  color: var(--text);
  font-weight: 800;
}

.ai-reason {
  padding-left: 13px;
  border-left: 4px solid var(--green);
  color: var(--text) !important;
  font-weight: 700;
}

.ai-next-step {
  margin: 18px 0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(30, 78, 140, 0.08);
}

.ai-next-step strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
}

.ai-next-step p {
  margin: 0;
}

.thinking-card {
  display: grid;
  min-height: 330px;
  place-content: center;
  text-align: center;
}

.thinking-card .panel-category {
  justify-self: center;
}

.thinking-icon {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 18px;
}

.thinking-icon span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  animation: thinkingPulse 900ms ease-in-out infinite;
}

.thinking-icon span:nth-child(2) {
  animation-delay: 140ms;
}

.thinking-icon span:nth-child(3) {
  animation-delay: 280ms;
}

@keyframes thinkingPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-7px);
  }
}

.ai-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(30, 78, 140, 0.1);
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.ai-action:hover {
  background: rgba(30, 78, 140, 0.18);
}

.map-section {
  padding: clamp(64px, 9vw, 110px) 0;
  background: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(31, 42, 46, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--green);
  background: rgba(31, 111, 91, 0.11);
  color: var(--green);
}

.map-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 22px;
  align-items: stretch;
}

.interactive-map {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 46, 0.1);
  border-radius: 8px;
  background: #edf5ef;
  box-shadow: var(--shadow);
}

.real-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.map-loading {
  position: absolute;
  inset: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(31, 111, 91, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(31, 111, 91, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #fbfaf6 0%, #edf5ef 48%, #eaf0f6 100%);
  background-size: 56px 56px, 56px 56px, auto;
  color: var(--green);
  font-weight: 900;
  text-align: center;
}

.map-loading.hidden {
  display: none;
}

.culture-pin {
  position: relative;
  display: grid;
  width: 44px !important;
  height: 44px !important;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(31, 42, 46, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.culture-pin::after {
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-right: 4px solid var(--white);
  border-bottom: 4px solid var(--white);
  background: inherit;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.culture-pin span {
  position: relative;
  z-index: 1;
}

.culture-pin:hover,
.culture-pin.active {
  background: var(--accent);
  box-shadow: 0 16px 30px rgba(31, 42, 46, 0.28);
}

.leaflet-container {
  font-family: Arial, Helvetica, sans-serif;
}

.leaflet-control-attribution {
  font-size: 0.68rem;
}

.map-marker {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50% 50% 50% 8px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(31, 42, 46, 0.22);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.map-marker span {
  transform: rotate(45deg);
}

.map-marker:hover,
.map-marker.active {
  background: var(--accent);
  transform: translate(-50%, -58%) rotate(-45deg) scale(1.08);
}

.map-marker.hidden {
  opacity: 0.12;
  pointer-events: none;
}

.point-panel {
  min-height: 540px;
  padding: 28px;
  border: 1px solid rgba(31, 42, 46, 0.1);
  border-radius: 8px;
  background: var(--off-white);
  box-shadow: var(--shadow);
}

.panel-category {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(30, 78, 140, 0.1);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.point-panel h3 {
  margin-bottom: 22px;
  color: var(--green);
  font-size: 2rem;
}

.panel-block {
  padding: 18px 0;
  border-top: 1px solid rgba(31, 42, 46, 0.12);
}

.panel-block h4 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.92rem;
}

.panel-block p,
.panel-close {
  color: var(--muted);
}

.panel-close {
  margin: 10px 0 0;
  color: var(--green);
  font-weight: 900;
}

.route-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin: 8px 0 10px;
  padding: 11px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(30, 78, 140, 0.18);
}

.route-button:hover {
  background: #173f71;
}

.route-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.route-status {
  min-height: 22px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.route-status[data-type="success"] {
  color: var(--green);
}

.route-status[data-type="warning"] {
  color: var(--accent);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
}

.opportunity {
  padding: clamp(64px, 9vw, 108px) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.path-item,
.audience-block,
.suggestion-form {
  border: 1px solid rgba(31, 42, 46, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(31, 42, 46, 0.08);
}

.path-item {
  padding: 24px;
}

.path-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 900;
}

.path-item h3 {
  margin-bottom: 10px;
}

.path-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.audiences {
  padding: clamp(58px, 8vw, 100px) 0;
  background: var(--green);
  color: var(--white);
}

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

.audience-block {
  padding: clamp(28px, 5vw, 46px);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.audience-block .eyebrow,
.audience-block p {
  color: rgba(255, 255, 255, 0.82);
}

.audience-block h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--white);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.partners {
  background: rgba(30, 78, 140, 0.32);
}

.participation {
  background: var(--off-white);
}

.form-layout p {
  color: var(--muted);
  font-size: 1.05rem;
}

.suggestion-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
}

.suggestion-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.suggestion-form input,
.suggestion-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 42, 46, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fbfaf6;
  color: var(--text);
  resize: vertical;
}

.suggestion-form input:focus,
.suggestion-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(31, 111, 91, 0.14);
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  padding: 42px 0;
  background: var(--text);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-statement {
  max-width: 620px;
  color: var(--white) !important;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    justify-content: flex-start;
    order: -1;
  }

  .hero-logo {
    width: min(460px, 100%);
  }

  .two-column,
  .form-layout,
  .map-workspace,
  .audience-grid,
  .ai-layout,
  .ai-tool {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .interactive-map,
  .point-panel {
    min-height: 460px;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 0.86rem;
  }

  .hero-actions,
  .hero-actions .button,
  .filters,
  .filter-button {
    width: 100%;
  }

  .button,
  .filter-button {
    justify-content: center;
  }

  .interactive-map {
    min-height: 380px;
  }

  .point-panel {
    min-height: auto;
    padding: 22px;
  }

  .map-marker {
    width: 38px;
    height: 38px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-card {
    min-height: 148px;
  }
}
