@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --ink: #15322f;
  --forest: #123f3a;
  --forest-2: #1d5b52;
  --sage: #dfe9df;
  --mist: #f3f6f2;
  --cream: #fbfaf4;
  --sky: #cfe3e6;
  --sun: #f4b95d;
  --coral: #e66d55;
  --white: #ffffff;
  --line: rgba(21, 50, 47, 0.15);
  --shadow: 0 20px 60px rgba(17, 56, 51, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
section { scroll-margin-top: 88px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.hidden { display: none; }
.skip-link {
  position: fixed; z-index: 999;
  top: 12px; left: 12px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 980px; }
.section { padding: 108px 0; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 244, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(18, 63, 58, .06);
}
.nav-wrap {
  min-height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand-text { display: grid; line-height: 1.02; }
.brand-text strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.brand-text span {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .64rem;
  margin-top: 5px;
  font-weight: 700;
}
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  text-decoration: none; font-weight: 600; font-size: .95rem;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--forest-2); }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--forest);
  border-radius: 999px;
}
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #eaf2ef 0%, #f8f7ef 70%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.3fr .7fr;
  gap: 80px; align-items: center;
  padding-top: 60px; padding-bottom: 160px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: "Manrope", sans-serif;
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 { max-width: 850px; font-size: clamp(3.1rem, 7vw, 6.4rem); margin-bottom: 26px; }
h2 { font-size: clamp(2.3rem, 4.8vw, 4.2rem); margin-bottom: 24px; }
h3 { font-size: 1.45rem; margin-bottom: 12px; }
p { margin-top: 0; }
.hero-lede {
  max-width: 700px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: rgba(21,50,47,.82);
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--forest); box-shadow: 0 12px 24px rgba(18,63,58,.18); }
.button-primary:hover { background: var(--forest-2); }
.button-secondary { border-color: var(--forest); color: var(--forest); background: transparent; }
.button-secondary:hover { background: rgba(18,63,58,.06); }

.hero-card {
  align-self: end;
  margin-bottom: 50px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card-kicker {
  text-transform: uppercase; letter-spacing: .15em;
  font-size: .72rem; font-weight: 800; color: var(--forest-2);
  margin-bottom: 20px;
}
.region-list { display: grid; gap: 18px; }
.region-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.region-list span {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--forest); color: var(--white);
  font-size: .72rem; font-weight: 800;
}
.region-list p { margin: 0; font-size: .92rem; }
.hero-art { position: absolute; inset: 0; pointer-events: none; }
.sun {
  position: absolute; width: 110px; height: 110px;
  border-radius: 50%; background: var(--sun);
  right: 8%; top: 14%;
  opacity: .9;
}
.ridge { position: absolute; bottom: 0; left: -5%; width: 110%; border-radius: 50% 50% 0 0; }
.ridge-back { height: 220px; background: #c9ddcf; clip-path: polygon(0 50%, 10% 34%, 22% 52%, 34% 25%, 48% 48%, 62% 18%, 76% 50%, 88% 29%, 100% 47%, 100% 100%, 0 100%); }
.ridge-mid { height: 160px; background: #7fa895; clip-path: polygon(0 58%, 12% 40%, 24% 62%, 37% 35%, 50% 66%, 64% 32%, 79% 58%, 91% 40%, 100% 52%, 100% 100%, 0 100%); }
.ridge-front { height: 95px; background: var(--forest); clip-path: polygon(0 52%, 14% 36%, 28% 64%, 43% 42%, 58% 70%, 72% 45%, 86% 61%, 100% 42%, 100% 100%, 0 100%); }
.trail {
  position: absolute; bottom: -45px; left: 50%;
  width: 170px; height: 230px;
  background: #e9d6ac;
  transform: translateX(-50%) perspective(240px) rotateX(42deg);
  clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%);
  opacity: .95;
}

.intro { background: var(--white); }
.section-lede {
  max-width: 830px;
  font-size: 1.25rem;
  color: rgba(21,50,47,.78);
}
.values-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.values-grid article {
  padding: 30px;
  border-top: 1px solid var(--line);
}
.icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--sage);
  color: var(--forest);
  font-size: .78rem; font-weight: 800;
  margin-bottom: 24px;
}

.work-section { background: var(--mist); }
.section-heading { max-width: 850px; margin-bottom: 52px; }
.split-heading {
  max-width: none;
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 80px; align-items: end;
}
.split-heading > p { font-size: 1.15rem; color: rgba(21,50,47,.75); }
.work-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.work-card {
  min-height: 270px;
  display: flex; flex-direction: column;
  padding: 34px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(21,50,47,.08);
}
.work-number {
  margin-bottom: auto;
  font-size: .75rem; font-weight: 800;
  color: var(--coral);
}
.work-card p { color: rgba(21,50,47,.72); margin-bottom: 0; }
.current-work {
  margin-top: 22px;
  padding: 48px;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: 56px;
}
.current-work .eyebrow { color: #f3bf75; }
.current-work-copy p:last-child { color: rgba(255,255,255,.78); }
.process { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.process > div {
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,.25);
  display: grid; grid-template-columns: 34px 1fr; gap: 12px;
}
.process span {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  font-size: .72rem; font-weight: 800;
}
.process p { margin: 0; color: rgba(255,255,255,.76); font-size: .92rem; }

.regions-section { background: var(--cream); }
.map-panel {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
}
.region-map {
  background: var(--sky);
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
}
.region-map svg { width: 100%; }
.map-shape { stroke: #fff; stroke-width: 8; }
.wa { fill: #6e9e8c; } .or { fill: #e6b45f; } .id { fill: #d56f57; }
.region-map circle { fill: var(--forest); stroke: white; stroke-width: 4; }
.region-cards { display: grid; gap: 16px; }
.region-cards article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.region-cards article:last-child { border-bottom: 0; }
.region-label {
  margin-bottom: 6px;
  color: var(--coral);
  font-weight: 800;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.region-cards p:last-child { margin-bottom: 0; color: rgba(21,50,47,.72); }

.leadership-section { background: var(--white); }
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.leader-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.initials {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--forest); color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  margin-bottom: 42px;
}
.leader-role {
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem; font-weight: 800;
  margin-bottom: 8px;
}
.leader-location { font-weight: 700; color: var(--forest-2); }
.leader-card p:last-child { color: rgba(21,50,47,.72); margin-bottom: 0; }

.join-section { background: var(--sage); }
.join-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.join-grid > div > p:not(.eyebrow) { font-size: 1.12rem; }
.small-note { color: rgba(21,50,47,.72); }
.contact-form {
  background: var(--white);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 8px; margin-bottom: 18px; }
.form-row label { font-weight: 700; font-size: .9rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  border: 1px solid rgba(21,50,47,.22);
  border-radius: 12px;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 3px solid rgba(29,91,82,.18);
  border-color: var(--forest-2);
}
.button-full { width: 100%; border: 0; }

.site-footer { background: #0c302c; color: var(--white); padding: 70px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr .75fr .75fr;
  gap: 60px; padding-bottom: 50px;
}
.footer-brand { margin-bottom: 22px; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.72); }
.footer-grid a { display: block; text-decoration: none; margin: 8px 0; }
.footer-heading { color: var(--white) !important; font-weight: 800; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 22px;
  display: flex; justify-content: space-between;
  gap: 30px;
  font-size: .85rem;
  color: rgba(255,255,255,.58);
}

@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .site-nav {
    display: none;
    position: absolute;
    top: 76px; left: 20px; right: 20px;
    flex-direction: column; align-items: stretch;
    padding: 20px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .menu-button {
    display: grid; gap: 5px;
    width: 44px; height: 44px; place-content: center;
    border: 0; border-radius: 50%;
    background: transparent;
  }
  .menu-button span[aria-hidden="true"] {
    display: block; width: 22px; height: 2px;
    background: var(--ink);
  }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; padding-top: 90px; padding-bottom: 180px; }
  .hero-card { max-width: 560px; margin-bottom: 0; }
  .split-heading, .current-work, .map-panel, .join-grid { grid-template-columns: 1fr; gap: 34px; }
  .values-grid, .leadership-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 230px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 68px; }
  .site-nav { top: 68px; left: 14px; right: 14px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  h2 { font-size: 2.35rem; }
  .hero-grid { padding-top: 62px; padding-bottom: 145px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .values-grid article { padding-inline: 0; }
  .current-work { padding: 30px 22px; }
  .process { grid-template-columns: 1fr; }
  .leadership-grid { gap: 14px; }
  .contact-form { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* Version 2: direct-action project portfolio */
.projects-section { background: #fffdf8; }

.project-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.project-card {
  background: #ffffff;
  border: 1px solid rgba(18, 63, 58, 0.14);
  border-radius: 26px;
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.project-card-featured { border-top: 7px solid #d86f5b; }

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1.4rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: .42rem .7rem;
  border-radius: 999px;
  background: #e4efe9;
  color: #123f3a;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.project-state {
  color: #667773;
  font-size: .82rem;
  font-weight: 700;
}

.project-place {
  margin: 0 0 .25rem;
  color: #d86f5b;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0 0 .9rem;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.08;
}

.project-summary {
  margin: 0;
  color: #52635f;
  line-height: 1.65;
}

.project-focus {
  display: flex;
  flex-wrap: wrap;
  gap: .48rem;
  margin: 1.25rem 0;
}

.project-focus span {
  padding: .42rem .65rem;
  border-radius: 999px;
  background: #f3f5f1;
  color: #234b46;
  font-size: .78rem;
  font-weight: 700;
}

.project-phase {
  border-top: 1px solid rgba(18, 63, 58, 0.12);
  padding-top: 1rem;
  margin: auto 0 0;
  color: #52635f;
  font-size: .93rem;
  line-height: 1.55;
}

.review-pipeline {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 28px;
  background: #123f3a;
  color: #ffffff;
}

.review-pipeline h3 {
  margin: .25rem 0 .7rem;
  color: #ffffff;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
}

.review-pipeline p { color: rgba(255,255,255,.78); }

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  align-content: center;
}

.city-grid div {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
}

.city-grid span {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f0bf65;
  color: #123f3a;
  font-size: .72rem;
  font-weight: 900;
}

.publication-note {
  margin-top: 1rem;
  padding: 1.15rem 1.3rem;
  border-left: 5px solid #f0bf65;
  background: #f7f2e7;
  color: #334945;
}

.publication-note strong {
  display: block;
  margin-bottom: .25rem;
  color: #123f3a;
}

.publication-note p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .project-feature-grid { grid-template-columns: 1fr; }
  .review-pipeline { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .project-card,
  .review-pipeline {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .city-grid { grid-template-columns: 1fr; }
  .project-card-top { align-items: flex-start; }
}
