:root {
  --green: #1f7a34;
  --light-green: #d8f2c5;
  --soft-green: #edf8e9;
  --dark: #222826;
  --gray: #5d6762;
  --line: #dbe4dc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(34, 40, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

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

p {
  margin: 0;
  color: var(--gray);
}
h2 span {
  color: var(--green);
  font-weight: 50;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  color: var(--dark);
}

h1 {
  max-width: 100rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
}
h1 span {
  color: var(--light-green);
  font-weight: 200;
}

h2 {
  max-width: 650px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

h1 br,
h2 br {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
}

.utility-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 6vw;
  max-height: 46px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--green), var(--dark));
  font-size: 0.82rem;
  transition: max-height 240ms ease, padding 240ms ease, opacity 220ms ease;
}

.utility-nav div {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.utility-nav a,
.utility-nav span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.utility-nav i {
  color: var(--light-green);
}

.site-header.is-scrolled .utility-nav {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.top-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 6vw;
  min-height: 86px;
  background: var(--white);
  color: var(--dark);
  overflow: hidden;
  border-bottom: 1px solid rgba(34, 40, 38, 0.08);
  box-shadow: 0 10px 28px rgba(34, 40, 38, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--dark);
  transition: transform 220ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.brand img {
  width: 100px;
  object-fit: contain;
  filter: none;
}

.brand span {
  color: var(--dark);
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--dark);
  font-weight: 400;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

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

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

.nav-links a.active {
  color: var(--green);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid transparent;
}

.nav-cta {
  background: var(--dark);
  color: var(--white);
}

.sub-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 54px);
  padding: 10px 6vw;
  max-height: 48px;
  color: var(--light-green);
  background: var(--dark);
  border-bottom: 1px solid rgba(34, 40, 38, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  overflow: hidden;
  transition: max-height 240ms ease, padding 240ms ease, opacity 220ms ease, transform 240ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled .sub-nav {
  box-shadow: 0 8px 26px rgba(34, 40, 38, 0.12);
}

.site-header.is-sub-hidden .sub-nav {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  box-shadow: none;
}

.hero,
.page-hero,
.section,
.site-footer {
  padding-left: 6vw;
  padding-right: 6vw;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.template-service-cards article.reveal,
.process-list li.reveal,
.value-list li.reveal {
  transform: translateY(28px) scale(0.98);
}

.template-service-cards article.reveal.is-visible,
.process-list li.reveal.is-visible,
.value-list li.reveal.is-visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .template-service-cards article.reveal,
  .process-list li.reveal,
  .value-list li.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sub-nav,
  .utility-nav {
    transition: none;
  }
}

.hero {
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  background: var(--dark);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
  max-width: 760px;
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 1000px;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green);
}

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

.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.ghost {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}
.home-mission-band .button.ghost {

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

.image-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(34, 40, 38, 0.9), rgba(34, 40, 38, 0.64) 44%, rgba(34, 40, 38, 0.2)),
    linear-gradient(0deg, rgba(31, 122, 52, 0.32), rgba(31, 122, 52, 0.04));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-hero h1,
.image-hero h2,
.image-hero .eyebrow,
.image-hero p:not(.form-status) {
  color: var(--white);
}

.image-hero .eyebrow::before {
  background: var(--light-green);
}

.image-hero .button.ghost {
  border-color: var(--light-green);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.template-hero {
  min-height: 610px;
  align-items: center;
}

.template-hero::after {
  background: linear-gradient(135deg, rgba(31, 122, 52, 0.94), rgba(0, 0, 0, 0.438));
  clip-path: polygon(0 0, min(50vw, 640px) 0, min(100vw, 900px) 100%, 0 100%);
}

.template-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(34, 40, 38, 0.1), rgba(34, 40, 38, 0.22));
}

.template-hero .hero-copy {
  max-width: 560px;
  padding-left: clamp(0px, 2vw, 24px);
}

.quick-actions {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(72rem, 88vw);
  margin: -54px auto 0;
  box-shadow: var(--shadow);
}

.quick-actions a {
  min-height: 118px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.quick-actions a:first-child {
  border-radius: 8px 0 0 8px;
}

.quick-actions a:last-child {
  border-right: 0;
  border-radius: 0 8px 8px 0;
  background: var(--dark);
  color: var(--white);
}

.quick-actions i {
  color: var(--green);
  font-size: 1.75rem;
}

.quick-actions a:last-child i,
.quick-actions a:last-child strong {
  color: var(--light-green);
}

.quick-actions span {
  color: inherit;
  font-weight: 500;
  line-height: 1.2;
}

.quick-actions strong {
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 500;
}

.page-hero {
  min-height: 620px;
  padding-top: 110px;
  padding-bottom: 80px;
  display: grid;
  align-items: end;
  gap: 22px;
  background: var(--dark);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.8rem);
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  max-width: 900px;
}

.template-page-hero {
  min-height: 520px;
}

.template-page-hero::after {
  background: linear-gradient(135deg, rgba(31, 122, 52, 0.92), rgba(34, 40, 38, 0.62));
  clip-path: polygon(0 0, min(58vw, 720px) 0, min(44vw, 560px) 100%, 0 100%);
}

.template-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(34, 40, 38, 0.12), rgba(34, 40, 38, 0.38));
}

.template-page-hero .page-hero-copy {
  max-width: 660px;
}

.section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1fr);
  gap: 46px;
  align-items: start;
  margin-bottom: 42px;
}

.section-heading.narrow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.split-text,
.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.intro-band,
.values-section,
.process-section,
.map-section {
  background: var(--white);
}

.text-column {
  display: grid;
  gap: 20px;
}

.about-story {
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  align-items: start;
  background: var(--white);
}

.about-story .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.about-story .text-column {
  align-self: center;
}

.about-media {
  margin: 0;
  align-self: stretch;
}

.about-media img,
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about-media img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.services-preview,
.leadership-band,
.sector-band,
.response-band {
  background: var(--soft-green);
}

.home-gallery {
  background: var(--white);
}

.template-services {
  background: var(--soft-green);
}

.template-centered-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0 auto 42px;
  text-align: center;
}

.template-centered-heading .eyebrow::before {
  display: none;
}

.template-centered-heading p:not(.eyebrow) {
  max-width: 660px;
}

.template-service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(80rem, 100%);
  margin: 0 auto;
}

.template-service-cards article {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  border-radius: 26px 26px 8px 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.template-service-cards article:first-child {
  background: var(--green);
}

.template-service-cards img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
  border-radius: 26px 26px 0 0;
}

.template-service-cards a {
  justify-self: end;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  margin: 0 24px -16px 0;
  padding: 0 18px;
  border-radius: 4px;
  color: var(--white);
  background: var(--green);
  font-size: 0.84rem;
  font-weight: 600;
}

.template-service-cards article:first-child a {
  background: var(--dark);
}

.template-service-cards h3,
.template-service-cards p {
  padding-left: 26px;
  padding-right: 26px;
}

.template-service-cards h3 {
  color: var(--green);
  margin-top: 4px;
}

.template-service-cards article:first-child h3,
.template-service-cards article:first-child p {
  color: var(--white);
}

.template-service-cards p {
  padding-top: 14px;
  padding-bottom: 30px;
  font-size: 0.95rem;
}

.home-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.home-mosaic figure,
.home-leadership figure {
  position: relative;
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.home-mosaic .mosaic-large {
  grid-row: 1 / span 2;
}

.home-mosaic img,
.home-leadership img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-mosaic figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(34, 40, 38, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
}

.home-leadership {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 1fr);
  gap: 56px;
  align-items: center;
  background: var(--white);
}

.home-leadership figure {
  min-height: 520px;
}

.home-leadership > div {
  display: grid;
  gap: 22px;
  max-width: 680px;
}

.home-leadership .button {
  width: fit-content;
}

.template-intro {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.template-intro figure {
  min-height: 520px;
  border-radius: 0;
  box-shadow: none;
  clip-path: polygon(0 0, 92% 0, 75% 100%, 0 100%);
}

.template-intro > div {
  padding-top: 86px;
  padding-bottom: 86px;
}

.home-mission-band {
  position: relative;
  isolation: isolate;
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.home-mission-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(31, 122, 52, 0.94), rgba(34, 40, 38, 0.74));
}

.home-mission-band img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-mission-band > div {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 850px;
}

.home-mission-band h2,
.home-mission-band p,
.home-mission-band .eyebrow {
  color: var(--white);
}

.home-mission-band .eyebrow::before {
  display: none;
}

.home-mission-band .button {
  border-color: transparent;
}

.home-message {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 54px;
  background: var(--soft-green);
  overflow: hidden;
}

.message-copy {
  display: grid;
  gap: 22px;
}

.message-mini-form {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.message-mini-form input,
.message-mini-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(34, 40, 38, 0.32);
  border-radius: 0;
  padding: 12px 0;
  color: var(--dark);
  background: transparent;
  font: inherit;
}

.message-mini-form textarea {
  min-height: 92px;
  resize: vertical;
}

.message-mini-form button {
  width: fit-content;
}

.home-message figure {
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.home-message img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-rows {
  border-top: 1px solid var(--line);
}

.service-rows article {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-rows span,
.service-number {
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

.service-rows article a {
  color: var(--green);
  font-weight: 700;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.proof-strip div {
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 34px;
  background: var(--dark);
}

.proof-strip strong {
  color: var(--light-green);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.75);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--green);
  color: var(--white);
}

.cta-band h2,
.cta-band .eyebrow,
.cta-band p {
  color: var(--white);
}

.cta-band .eyebrow::before {
  background: var(--white);
}

.leadership-band,
.certificate-band,
.sector-band,
.response-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: 48px;
  align-items: start;
}

.leadership-band > p {
  font-size: 1.08rem;
}

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

.leadership-band::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 22vw;
  background: linear-gradient(135deg, rgba(216, 242, 197, 0), rgba(216, 242, 197, 0.72));
  clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.mission-grid article {
  display: grid;
  gap: 18px;
  padding: 44px;
  background: var(--white);
}

.icon-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--light-green);
  font-size: 1.1rem;
}

.value-list,
.certificate-band ul,
.sector-list,
.response-band ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 1px;
  background: var(--line);
}

.value-list li,
.sector-list span {
  min-height: 118px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 22px;
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
  text-align: center;
}

.value-list i {
  color: var(--green);
  font-size: 1.35rem;
}

.certificate-band {
  background: var(--dark);
}

.certificate-band h2,
.certificate-band .eyebrow,
.certificate-band li {
  color: var(--white);
}

.certificate-band .eyebrow::before {
  background: var(--light-green);
}

.certificate-band ul,
.response-band ul {
  display: grid;
  gap: 14px;
}

.certificate-band li,
.response-band li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.service-detail {
  display: grid;
  grid-template-columns: 70px minmax(260px, 0.75fr) minmax(300px, 1fr) auto;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-detail.alt {
  background: var(--soft-green);
}

.service-media {
  margin: 0;
  align-self: stretch;
  min-height: 280px;
  overflow: hidden;
  border-radius: 26px 8px 8px 26px;
  box-shadow: var(--shadow);
}

.service-copy {
  display: grid;
  gap: 16px;
}

.service-copy p:not(.eyebrow) {
  max-width: 640px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line);
}

.process-list li {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  color: var(--gray);
}

.process-list span {
  color: var(--green);
  font-weight: 700;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-intro {
  display: grid;
  gap: 20px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  padding-top: 10px;
}

.contact-lines a {
  color: var(--green);
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  color: var(--dark);
  background: var(--white);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.full-field,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  color: var(--green);
  font-weight: 600;
}

.map-section iframe {
  width: 100%;
  height: min(58vh, 540px);
  border: 0;
  border-radius: 8px;
  filter: grayscale(30%);
}

.contact-details {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: 48px;
  background: var(--soft-green);
}

.contact-details dl {
  margin: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
}

.contact-details div {
  padding: 24px;
  background: var(--white);
}

.contact-details dt {
  color: var(--green);
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-details dd {
  margin: 0;
  color: var(--gray);
}

.response-band li {
  border-color: rgba(34, 40, 38, 0.12);
  color: var(--gray);
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding-top: 74px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 46px;
  padding-bottom: 54px;
}

.footer-main > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-logo {
  width: 200px;

  object-fit: contain;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

.footer-main h2 {
  color: var(--light-green);
  font-size: 1rem;
  margin-bottom: 4px;
}

.footer-main p,
.footer-main span,
.footer-main a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-main a:hover,
.footer-bottom a:hover {
  color: var(--light-green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 980px) {
  .top-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    flex-wrap: wrap;
  }

  .hero,
  .split-text,
  .split-section,
  .about-story,
  .home-leadership,
  .home-message,
  .leadership-band,
  .certificate-band,
  .sector-band,
  .response-band,
  .contact-layout,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .proof-strip,
  .process-list,
  .value-list,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail {
    grid-template-columns: 52px 1fr;
  }

  .service-media,
  .service-copy,
  .service-detail .button {
    grid-column: 2 / -1;
  }

  .service-media {
    min-height: 360px;
  }

  .home-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .home-mosaic .mosaic-large {
    grid-row: auto;
  }

  .home-mosaic figure,
  .home-leadership figure {
    min-height: 360px;
  }

  .template-hero::after {
    clip-path: polygon(0 0, 68% 0, 52% 100%, 0 100%);
  }

  .quick-actions {
    width: min(42rem, 88vw);
    grid-template-columns: 1fr;
  }

  .quick-actions a,
  .quick-actions a:first-child,
  .quick-actions a:last-child {
    border-radius: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-actions a:first-child {
    border-radius: 8px 8px 0 0;
  }

  .quick-actions a:last-child {
    border-bottom: 0;
    border-radius: 0 0 8px 8px;
  }

  .template-service-cards {
    grid-template-columns: 1fr;
    max-width: 34rem;
  }

  .template-intro figure,
  .home-message figure {
    clip-path: none;
  }

  .template-intro > div {
    padding-top: 24px;
  }
}

@media (max-width: 680px) {
  .top-nav {
    grid-template-columns: auto auto;
    padding: 12px 5vw;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
  }

  .utility-nav {
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.76rem;
  }

  .utility-nav div:last-child {
    display: none;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 74px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-cta {
    display: none;
    grid-column: 1 / -1;
    width: fit-content;
    padding: 0 14px;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: grid;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    justify-content: flex-start;
    transition: max-height 260ms ease, opacity 220ms ease, padding 220ms ease;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-menu-open .nav-links {
    max-height: 260px;
    padding-top: 8px;
    opacity: 1;
  }

  .site-header.is-menu-open .nav-cta {
    display: inline-flex;
  }

  .sub-nav {
    display: none;
  }

  .hero,
  .page-hero,
  .section,
  .site-footer {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 76px;
  }

  .page-hero {
    min-height: 520px;
    padding-top: 100px;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .proof-strip,
  .process-list,
  .value-list,
  .mission-grid,
  .sector-list,
  .footer-main,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-number,
  .service-media,
  .service-copy,
  .service-detail .button {
    grid-column: 1;
  }

  .service-media {
    min-height: 260px;
  }

  .home-mosaic {
    gap: 12px;
  }

  .home-mosaic figure,
  .home-leadership figure {
    min-height: 260px;
  }

  .template-hero {
    min-height: 560px;
  }

  .template-hero::after {
    clip-path: none;
    background: linear-gradient(90deg, rgba(31, 122, 52, 0.9), rgba(34, 40, 38, 0.64));
  }

  .quick-actions {
    margin-top: 0;
    width: 100%;
  }

  .quick-actions a {
    grid-template-columns: 42px 1fr auto;
    min-height: 92px;
    padding: 20px 5vw;
  }

  .quick-actions i {
    font-size: 1.35rem;
  }

  .template-service-cards article {
    border-radius: 18px 18px 8px 8px;
  }

  .template-service-cards img {
    border-radius: 18px 18px 0 0;
  }

  .home-mission-band {
    min-height: 360px;
  }

  .home-message figure {
    min-height: 260px;
  }

  .service-rows article {
    grid-template-columns: 42px 1fr;
  }

  .service-rows article a {
    grid-column: 2;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-bottom,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 br,
  h2 br {
    display: none;
  }
}
