:root {
  --green: #075d38;
  --green-2: #0b7448;
  --deep: #082d22;
  --gold: #d6a529;
  --gold-light: #f0d680;
  --ink: #17201d;
  --grey: #68716d;
  --mist: #f2f4f1;
  --white: #fff;
  --line: #dce1dc;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(6, 49, 34, 0.15);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background: #fff;
  line-height: 1.65;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  margin-bottom: 1.5rem;
}
h2 {
  font-size: clamp(2.45rem, 4.5vw, 4.7rem);
  margin-bottom: 1.5rem;
}
h3 {
  letter-spacing: -0.03em;
}
em {
  font-style: normal;
  color: var(--green);
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.section {
  padding: 120px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 24px;
}
.eyebrow > span {
  width: 23px;
  height: 2px;
  background: var(--gold);
}
.eyebrow.light {
  color: #eaf4ee;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 15px 21px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: 0.3s ease;
  cursor: pointer;
}
.button span {
  font-size: 1.15rem;
}
.button-primary {
  background: var(--gold);
  color: #17201d;
}
.button-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}
.button-dark {
  background: var(--deep);
  color: #fff;
}
.button-dark:hover {
  background: var(--green);
  transform: translateY(-3px);
}
.button-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.button-outline:hover {
  background: #fff;
  color: var(--deep);
}
.text-link {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}
.text-link span {
  color: var(--green);
  transition: 0.25s;
}
.text-link:hover span {
  transform: translateX(4px);
}
.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  position: relative;
  z-index: 100;
  background: white;
  border-bottom: 1px solid rgba(10, 80, 50, 0.1);
  transition: 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Manrope;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand img {
  width: 49px;
  height: 49px;
  object-fit: contain;
}
.brand b {
  color: var(--gold);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.88rem;
  font-weight: 600;
}
.main-nav > a:not(.nav-cta) {
  position: relative;
}
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.25s;
}
.main-nav > a:hover::after,
.main-nav > a.active::after {
  width: 100%;
}
.nav-cta {
  background: var(--green);
  color: white;
  padding: 11px 17px;
  border-radius: 7px;
  display: flex;
  gap: 20px;
  transition: 0.25s;
}
.nav-cta:hover {
  background: var(--deep);
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 7px 0;
  transition: 0.25s;
}
.hero {
  min-height: calc(100vh - 82px);
  background: linear-gradient(120deg, #f4f6f2 0%, #fff 60%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(7, 93, 56, 0.08);
  left: -280px;
  top: -170px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  font-size: clamp(3.6rem, 6.7vw, 6.7rem);
}
.hero-copy h1 em {
  display: inline-block;
  position: relative;
}
.hero-copy h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--gold);
  bottom: 2px;
  z-index: -1;
  opacity: 0.6;
}
.hero-lede {
  font-size: 1.08rem;
  color: var(--grey);
  max-width: 620px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 36px 0 40px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-proof p {
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0;
  color: var(--grey);
}
.hero-proof strong {
  color: var(--ink);
}
.avatar-stack {
  display: flex;
  padding-left: 10px;
}
.avatar-stack span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -10px;
  background: center/cover;
}
.avatar-stack span:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1531123897727-8f129e1688ce?auto=format&fit=crop&w=100&q=80");
}
.avatar-stack span:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=100&q=80");
}
.avatar-stack span:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=100&q=80");
}
.hero-visual {
  position: relative;
  min-height: 610px;
}
.hero-photo {
  height: 560px;
  width: 88%;
  margin-left: auto;
  border-radius: 220px 220px 26px 26px;
  background:
    linear-gradient(rgba(8, 45, 34, 0.1), rgba(8, 45, 34, 0.15)),
    url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1200&q=85")
      center/cover;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 205px 205px 16px 16px;
}
.floating-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  box-shadow: 0 15px 40px rgba(6, 49, 34, 0.16);
  border-radius: 14px;
  display: flex;
  align-items: center;
}
.card-top {
  top: 18%;
  left: -5%;
  padding: 14px 18px;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.card-top p {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--grey);
}
.card-top b {
  color: var(--ink);
  font-size: 0.8rem;
}
.mini-icon {
  background: #e3f2e9;
  color: var(--green);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.card-bottom {
  right: -3%;
  bottom: 12%;
  padding: 16px 20px;
  gap: 12px;
  animation: float 4s ease-in-out 1s infinite;
}
.card-bottom b {
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
}
.card-bottom span {
  font-size: 0.65rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(214, 165, 41, 0.5);
  border-radius: 50%;
}
.orbit-one {
  width: 100px;
  height: 100px;
  right: -36px;
  top: 13%;
}
.orbit-two {
  width: 14px;
  height: 14px;
  background: var(--gold);
  left: 3%;
  bottom: 13%;
}
.hero-stamp {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 4;
}
.hero-stamp span {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  position: absolute;
  inset: 10px;
  animation: spin 14s linear infinite;
  text-align: center;
  display: flex;
  align-items: center;
}
.hero-stamp b {
  font-size: 1.7rem;
  color: var(--gold);
}
.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 130px;
  align-items: end;
}
.intro-copy {
  padding-bottom: 22px;
}
.intro-copy p {
  font-size: 1.1rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 32px;
}
.service-showcase {
  background: var(--deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service-showcase::after {
  content: "LS";
  position: absolute;
  right: -20px;
  bottom: -130px;
  font: 800 28rem/1 Manrope;
  color: rgba(255, 255, 255, 0.018);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 55px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.service-showcase h2 em,
.cta-band h2 em,
.confidentiality h2 em,
.audience h2 em {
  color: var(--gold);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}
.service-card {
  min-height: 385px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: 0.35s;
  background: rgba(255, 255, 255, 0.025);
}
.service-card:hover {
  transform: translateY(-9px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--gold);
}
.service-card.featured {
  background: var(--green);
}
.service-number {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
}
.service-icon {
  font-size: 2.3rem;
  color: var(--gold);
  margin: 50px 0 24px;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.service-card p {
  color: #b9c8c1;
  font-size: 0.9rem;
}
.circle-arrow {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: auto;
  transition: 0.25s;
}
.service-card:hover .circle-arrow {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.impact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.impact-photo {
  height: 620px;
  border-radius: 20px;
  background: url("assets/images/why-local-synergy.webp") center/cover;
  position: relative;
}
.photo-note {
  position: absolute;
  bottom: -30px;
  right: -50px;
  background: var(--gold);
  width: 240px;
  padding: 24px;
}
.photo-note span {
  font: 700 2.5rem Georgia;
}
.photo-note p {
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}
.impact-copy > p:not(.eyebrow) {
  color: var(--grey);
  font-size: 1.05rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.check-list li {
  border-top: 1px solid var(--line);
  padding: 13px 0;
}
.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  margin-right: 12px;
}
.cta-band {
  background: var(--green);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band .container {
  position: relative;
}
.cta-band .container::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  right: 0;
  top: -160px;
}
.cta-band h2 {
  margin: 0;
  max-width: 850px;
}
.round-cta {
  position: absolute;
  right: 30px;
  bottom: -20px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: 0.3s;
  z-index: 2;
}
.round-cta:hover {
  transform: scale(1.06) rotate(-4deg);
}
.site-footer {
  background: #081d17;
  color: #fff;
  padding-top: 80px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 65px;
}
.footer-brand img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer-brand h3 {
  font-size: 1.4rem;
  margin: 0;
}
.footer-brand p {
  color: var(--gold);
  font-size: 0.82rem;
}
.site-footer h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #82968e;
  margin-bottom: 22px;
}
.site-footer a {
  display: block;
  color: #d1dbd6;
  font-size: 0.86rem;
  margin: 11px 0;
  transition: 0.2s;
}
.site-footer a:hover {
  color: var(--gold);
  transform: translateX(3px);
}
.footer-connect p {
  font-size: 0.9rem;
  color: #a9bab2;
}
.site-footer .footer-email {
  color: var(--gold);
  font-size: 1rem;
  border-bottom: 1px solid #375048;
  padding-bottom: 9px;
  display: flex;
  justify-content: space-between;
}
.footer-bottom {
  border-top: 1px solid #243a32;
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  color: #789087;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}
.footer-bottom p {
  margin: 0;
}
.page-hero {
  padding: 65px 0 85px;
  background: var(--mist);
  overflow: hidden;
}
.page-hero > .container {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  align-items: center;
}
.page-hero-copy h1 {
  font-size: clamp(3.7rem, 6vw, 6.5rem);
}
.page-hero-copy > p:last-child {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 600px;
}
.page-hero-image {
  height: 540px;
  border-radius: 240px 240px 20px 20px;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.about-hero-image {
  background-image: url("https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&w=1100&q=85");
}
.services-hero-image {
  background-image: url("assets/images/service-operations.webp");
}
.image-label {
  position: absolute;
  left: -45px;
  bottom: 35px;
  background: var(--gold);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.image-label span {
  font-size: 0.75rem;
}
.story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 110px;
}
.story-copy {
  padding-top: 50px;
  color: var(--grey);
  font-size: 1.07rem;
}
.mission-section {
  background: linear-gradient(90deg, var(--deep) 0 50%, #f0f2ee 50%);
}
.value-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mission-card,
.vision-card {
  padding: 65px;
}
.mission-card {
  color: #fff;
}
.vision-card {
  color: var(--ink);
}
.mission-card > span,
.vision-card > span {
  font-size: 0.7rem;
  opacity: 0.5;
}
.mission-card h3,
.vision-card h3 {
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.45;
  margin-top: 45px;
}
.values .section-heading > p {
  max-width: 380px;
  color: var(--grey);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.values-grid article {
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 230px;
}
.values-grid b {
  font-size: 0.7rem;
  color: var(--gold);
}
.values-grid h3 {
  font-size: 1.35rem;
  margin: 35px 0 10px;
}
.values-grid p {
  font-size: 0.87rem;
  color: var(--grey);
}
.confidentiality {
  background: var(--green);
  color: #fff;
  padding: 80px 0;
}
.confidentiality > .container {
  display: grid;
  grid-template-columns: auto 1fr 0.8fr;
  gap: 55px;
  align-items: center;
}
.confidentiality h2 {
  margin: 0;
}
.confidentiality > .container > p {
  color: #c5d8cf;
}
.lock-icon {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--gold);
}
.services-list {
  padding-bottom: 40px;
}
.service-row {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 90px;
  padding: 75px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.service-row-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.service-row-head > span {
  color: var(--gold);
  font-weight: 700;
}
.large-icon {
  width: 120px;
  height: 120px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: var(--green);
}
.service-row h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}
.service-row > div:last-child > p:not(.eyebrow) {
  color: var(--grey);
  max-width: 700px;
}
.service-row ul {
  columns: 2;
  padding: 0;
  list-style: none;
  margin-top: 30px;
}
.service-row li {
  break-inside: avoid;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.service-row li::before {
  content: "↗";
  color: var(--gold);
  margin-right: 10px;
}
.audience {
  background: var(--deep);
  color: white;
}
.audience-tags {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.audience-tags span {
  border: 1px solid #486058;
  border-radius: 100px;
  padding: 13px 22px;
  font-size: 0.88rem;
  transition: 0.25s;
}
.audience-tags span:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}
.contact-hero {
  background: var(--deep);
  color: #fff;
  padding: 90px 0 120px;
}
.contact-hero > .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
}
.contact-intro {
  padding-top: 45px;
}
.contact-intro h1 em {
  color: var(--gold);
}
.contact-intro > p:not(.eyebrow) {
  color: #b9c9c2;
  max-width: 500px;
  font-size: 1.05rem;
}
.contact-details {
  margin-top: 60px;
}
.contact-details > div {
  padding: 18px 0;
  border-top: 1px solid #385048;
}
.contact-details span {
  display: block;
  text-transform: uppercase;
  color: #789087;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
}
.contact-details a,
.contact-details p {
  font-size: 0.95rem;
  margin: 5px 0;
}
.contact-form {
  background: #fff;
  color: var(--ink);
  padding: 45px 50px;
  box-shadow: var(--shadow);
}
.form-heading {
  display: flex;
  justify-content: space-between;
  font-family: Manrope;
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.form-heading b {
  color: var(--green);
  font-size: 1.7rem;
}
.contact-form label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 19px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  font: inherit;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  background: transparent;
  outline: 0;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form small {
  display: block;
  margin-top: 15px;
  color: var(--grey);
  font-size: 0.67rem;
}
.contact-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.contact-values > div {
  padding: 35px;
  border-left: 1px solid var(--line);
}
.contact-values > div:last-child {
  border-right: 1px solid var(--line);
}
.contact-values b {
  color: var(--gold);
  font-size: 0.7rem;
}
.contact-values h3 {
  margin: 25px 0 8px;
}
.contact-values p {
  color: var(--grey);
  font-size: 0.85rem;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.24s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .section {
    padding: 85px 0;
  }
  .main-nav {
    position: fixed;
    inset: 82px 0 0;
    background: var(--deep);
    color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 30px;
    transform: translateX(100%);
    transition: 0.35s;
  }
  .main-nav.open {
    transform: none;
  }
  .main-nav a {
    font-size: 1.25rem;
  }
  .main-nav .nav-cta {
    margin-top: 20px;
  }
  .menu-toggle {
    display: block;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }
  .hero {
    min-height: auto;
  }
  .hero-grid,
  .page-hero > .container {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero-visual {
    min-height: 500px;
  }
  .hero-photo {
    height: 480px;
  }
  .hero-stamp {
    width: 110px;
    height: 110px;
  }
  .intro,
  .impact,
  .story,
  .contact-hero > .container {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .service-grid,
  .values-grid,
  .contact-values {
    grid-template-columns: 1fr;
  }
  .impact-photo {
    height: 520px;
  }
  .section-heading {
    align-items: flex-start;
  }
  .footer-main {
    grid-template-columns: 1.3fr 1fr;
  }
  .mission-section {
    background: var(--deep);
  }
  .value-pair {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .vision-card {
    background: #f0f2ee;
  }
  .confidentiality > .container {
    grid-template-columns: auto 1fr;
  }
  .confidentiality > .container > p {
    grid-column: 2;
  }
  .service-row {
    gap: 45px;
  }
  .round-cta {
    width: 125px;
    height: 125px;
  }
  .contact-hero {
    padding-top: 35px;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 32px, 1180px);
  }
  .site-header {
    height: 72px;
    padding-inline: 16px;
  }
  .brand img {
    width: 43px;
    height: 43px;
  }
  .main-nav {
    inset: 72px 0 0;
  }
  .hero-grid {
    padding-top: 55px;
  }
  .hero-copy h1 {
    font-size: 3.35rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-visual {
    min-height: 420px;
  }
  .hero-photo {
    height: 400px;
    width: 94%;
  }
  .card-top {
    left: -1%;
    top: 22%;
  }
  .card-bottom {
    right: -1%;
    bottom: 5%;
  }
  .hero-stamp {
    display: none;
  }
  .intro {
    gap: 25px;
  }
  .section-heading {
    display: block;
  }
  .section-heading .button {
    margin-top: 25px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 350px;
  }
  .impact {
    gap: 65px;
  }
  .impact-photo {
    height: 430px;
  }
  .photo-note {
    right: -5px;
    bottom: -35px;
  }
  .round-cta {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 35px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }
  .footer-brand,
  .footer-connect {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
  }
  .page-hero {
    padding-top: 45px;
  }
  .page-hero-image {
    height: 400px;
  }
  .image-label {
    left: -8px;
  }
  .story {
    gap: 15px;
  }
  .story-copy {
    padding-top: 0;
  }
  .mission-card,
  .vision-card {
    padding: 45px 25px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .confidentiality > .container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .confidentiality > .container > p {
    grid-column: auto;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 55px 0;
  }
  .service-row-head {
    align-items: center;
  }
  .large-icon {
    width: 85px;
    height: 85px;
    font-size: 2rem;
  }
  .service-row ul {
    columns: 1;
  }
  .contact-hero > .container {
    gap: 45px;
  }
  .contact-form {
    padding: 32px 22px;
  }
  .contact-values {
    grid-template-columns: 1fr;
  }
  .contact-values > div {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
}
.form-status {
  color: var(--green);
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 12px 0 0;
}

/* Refined header and hero */
.site-header {
  height: 154px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 12px max(24px, calc((100vw - 1280px) / 2));
  background: #fff;
}
.brand {
  display: block;
  height: 82px;
}
.brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}
.main-nav {
  width: 100%;
  justify-content: flex-start;
  gap: 32px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.main-nav .nav-cta {
  margin-left: auto;
}
.hero {
  min-height: calc(100vh - 154px);
  background: #f5f6f3;
}
.hero::before,
.floating-card,
.orbit,
.hero-stamp,
.hero-proof {
  display: none;
}
.hero-grid {
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-copy {
  max-width: 650px;
}
.hero-copy h1 {
  font-size: clamp(3.4rem, 5.8vw, 5.9rem);
  margin-bottom: 24px;
}
.hero-copy h1 em::after {
  display: none;
}
.hero-lede {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.hero-actions {
  margin: 32px 0 0;
}
.hero-visual {
  min-height: 510px;
}
.hero-photo {
  width: 100%;
  height: 510px;
  margin: 0;
  border-radius: 12px;
  box-shadow: none;
  background-position: center;
}
.hero-photo::after {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    height: 86px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 7px 20px;
  }
  .brand {
    height: 70px;
  }
  .brand img {
    width: 70px;
    height: 70px;
  }
  .main-nav {
    width: auto;
    inset: 86px 0 0;
    padding: 42px 28px;
    border-top: 0;
    gap: 24px;
  }
  .main-nav .nav-cta {
    margin-left: 0;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    gap: 38px;
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .hero-visual {
    min-height: 460px;
  }
  .hero-photo {
    height: 460px;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: 78px;
    padding: 5px 16px;
  }
  .brand {
    height: 64px;
  }
  .brand img {
    width: 64px;
    height: 64px;
  }
  .main-nav {
    inset: 78px 0 0;
  }
  .hero-copy h1 {
    font-size: 3.15rem;
  }
  .hero-grid {
    padding-top: 46px;
    padding-bottom: 46px;
  }
  .hero-visual {
    min-height: 330px;
  }
  .hero-photo {
    height: 330px;
    border-radius: 8px;
  }
}

/* Full-image home hero and compact scroll header */
.hero {
  min-height: calc(100vh - 154px);
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(5, 35, 26, 0.88) 0%,
      rgba(5, 35, 26, 0.64) 48%,
      rgba(5, 35, 26, 0.18) 100%
    ),
    url("assets/images/home-hero.webp") center/cover no-repeat;
}
.hero-grid {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 154px);
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-copy {
  max-width: 850px;
}
.hero-copy h1 {
  color: #fff;
  font-size: clamp(4rem, 7.4vw, 7.4rem);
  line-height: 0.98;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.2);
}
.hero-copy h1 em {
  display: inline-block;
  color: #fff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.2);
}
.hero-lede {
  color: rgba(255, 255, 255, 0.88);
  max-width: 610px;
}

@media (min-width: 901px) {
  .site-header.scrolled {
    height: 84px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .site-header.scrolled .brand {
    height: 68px;
    flex: 0 0 auto;
  }
  .site-header.scrolled .brand img {
    width: 68px;
    height: 68px;
  }
  .site-header.scrolled .main-nav {
    width: auto;
    flex: 1 1 auto;
    padding-top: 0;
    border-top: 0;
    justify-content: flex-start;
  }
  .site-header.scrolled .nav-cta {
    margin-left: auto;
  }
}
@media (max-width: 900px) {
  .hero,
  .hero-grid {
    min-height: 680px;
  }
  .hero-grid {
    display: flex;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 600px) {
  .hero,
  .hero-grid {
    min-height: 600px;
  }
  .hero {
    background-position: 58% center;
  }
  .hero-copy h1 {
    font-size: clamp(3.35rem, 15vw, 4.7rem);
  }
  .hero-copy h1 em {
    color: #fff;
  }
  .hero-lede {
    font-size: 0.98rem;
  }
}

/* Vertical section labels, photographic services and solid hero type */
.eyebrow {
  position: relative;
  align-items: flex-start;
  gap: 0;
  padding-left: 18px;
  min-height: 38px;
}
.eyebrow > span {
  position: absolute;
  left: 0;
  top: 1px;
  width: 2px;
  height: 46px;
  background: var(--gold);
}
.hero-copy h1 em {
  color: #fff;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
}
.hero-copy h1 em::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: var(--gold);
  border-radius: 10px;
  z-index: auto;
  opacity: 1;
}
.service-card {
  position: relative;
  min-height: 480px;
  padding: 0;
  overflow: hidden;
}
.service-card .service-number {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  padding: 5px 9px;
  background: rgba(5, 35, 26, 0.86);
  color: #fff;
  border-radius: 3px;
}
.service-image {
  width: 100%;
  height: 195px;
  background-position: center;
  background-size: cover;
  transition: transform 0.45s ease;
}
.community-service-image {
  background-image: url("assets/images/service-community.webp");
}
.document-service-image {
  background-image: url("assets/images/service-documents.webp");
}
.operations-service-image {
  background-image: url("assets/images/service-operations.webp");
}
.service-card h3 {
  margin: 27px 28px 13px;
}
.service-card p {
  margin: 0 28px;
}
.service-card .circle-arrow {
  margin: auto 28px 28px;
}
.service-card:hover .service-image {
  transform: scale(1.035);
}
@media (max-width: 600px) {
  .hero-copy h1 em {
    -webkit-text-stroke: 0;
    text-stroke: 0;
  }
  .hero-copy h1 em::after {
    height: 5px;
  }
  .service-card {
    min-height: 455px;
  }
}

/* Services page photography */
.service-row-head {
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
}
.service-detail-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 34px rgba(6, 49, 34, 0.1);
}
.community-detail-photo {
  background-image: url("assets/images/service-community.webp");
}
.documents-detail-photo {
  background-image: url("assets/images/service-documents.webp");
}
.operations-detail-photo {
  background-image: url("assets/images/service-operations.webp");
}
.youth-detail-photo {
  background-image: url("assets/images/service-youth.webp");
}
@media (max-width: 600px) {
  .service-row-head {
    align-items: stretch;
  }
  .service-detail-photo {
    aspect-ratio: 16/9;
  }
}

@media (min-width: 901px) {
  .service-row {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
  }
  .service-detail-photo {
    aspect-ratio: 5/4;
  }
}

/* Tighter section headings and image-overlay purpose cards */
.section h2,
.confidentiality h2,
.cta-band h2,
.audience h2 {
  font-size: clamp(2.15rem, 4vw, 4.15rem);
  line-height: 1.06;
  text-wrap: balance;
}
.service-row h2 {
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  text-wrap: balance;
}
.mission-section {
  background: var(--deep);
}
.value-pair {
  gap: 20px;
}
.mission-card,
.vision-card {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.mission-card {
  background-image:
    linear-gradient(180deg, rgba(5, 35, 26, 0.18), rgba(5, 35, 26, 0.9)),
    url("assets/images/about-mission.webp");
}
.vision-card {
  background-image:
    linear-gradient(180deg, rgba(5, 35, 26, 0.15), rgba(5, 35, 26, 0.9)),
    url("https://images.unsplash.com/photo-1529390079861-591de354faf5?auto=format&fit=crop&w=1100&q=86");
}
.mission-card .eyebrow,
.vision-card .eyebrow {
  color: #fff;
}
.mission-card > span,
.vision-card > span {
  position: absolute;
  top: 34px;
  left: 40px;
  color: #fff;
  opacity: 0.8;
}
.mission-card h3,
.vision-card h3 {
  margin-bottom: 0;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.24);
}
@media (max-width: 600px) {
  .section h2,
  .confidentiality h2,
  .cta-band h2,
  .audience h2 {
    font-size: clamp(1.75rem, 7.7vw, 2.15rem);
    line-height: 1.1;
  }
  .service-row h2 {
    font-size: clamp(1.85rem, 8vw, 2.2rem);
  }
  .mission-card,
  .vision-card {
    min-height: 470px;
  }
  .mission-card > span,
  .vision-card > span {
    left: 25px;
    top: 25px;
  }
}

/* Keep inner-page hero titles to two deliberate lines */
.page-hero-copy h1 {
  font-size: clamp(3rem, 4.2vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .page-hero-copy h1 {
    font-size: clamp(2rem, 6.7vw, 3.2rem);
  }
}
@media (max-width: 420px) {
  .page-hero-copy h1 {
    font-size: clamp(1.9rem, 9.2vw, 2.4rem);
  }
}

/* Simplified confidentiality promise */
.confidentiality {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--deep);
  padding: 105px 0;
}
.confidentiality::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=84")
    center/cover no-repeat;
  opacity: 0.16;
}
.confidentiality::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(5, 35, 26, 0.5),
    rgba(5, 35, 26, 0.78)
  );
}
.confidentiality > .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.confidentiality h2 {
  margin: 0;
  color: #fff;
}
.confidentiality > .container > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.8;
}
@media (max-width: 700px) {
  .confidentiality {
    padding: 80px 0;
  }
  .confidentiality > .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .confidentiality > .container > p {
    grid-column: auto;
  }
}

.footer-bottom {
  gap: 24px;
  align-items: center;
}
.footer-bottom .footer-credit {
  margin-left: auto;
  text-align: right;
}
.footer-bottom .footer-credit a {
  display: inline;
  margin: 0;
  color: var(--gold);
  font-size: inherit;
  font-weight: 700;
}
.footer-bottom .footer-credit a:hover {
  transform: none;
  color: var(--gold-light);
}
@media (max-width: 700px) {
  .footer-bottom .footer-credit {
    margin-left: 0;
    text-align: left;
    margin-top: 8px;
  }
}

/* Image-overlay story section */
.story-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--green-2);
  color: #fff;
}
.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1800&q=84")
    center/cover no-repeat;
  opacity: 0.18;
}
.story-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(9, 105, 64, 0.82),
    rgba(11, 116, 72, 0.68)
  );
}
.story-section .story {
  position: relative;
  z-index: 1;
}
.story-section .story-title h2 {
  color: #fff;
}
.story-section .story-title h2 em {
  color: var(--gold);
}
.story-section .story-copy {
  color: rgba(255, 255, 255, 0.82);
}
