:root {
  --color-primary: #157e46;
  --color-primary-deep: #0b4123;
  --color-text: #2f2f2f;
  --color-text-soft: #565656;
  --color-muted: #7a7a7a;
  --color-border: #d9e2dc;
  --color-surface: #ffffff;
  --color-surface-soft: #f7f8f6;
  --color-background: #ffffff;
  --shadow-soft: 0 16px 40px rgba(11, 65, 35, 0.08);
  --shadow-line: 0 8px 20px rgba(11, 65, 35, 0.05);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--color-primary-deep);
}

p,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.15;
  color: #2a2a2a;
}

h1 {
  font-size: clamp(2.85rem, 4.2vw, 3.7rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.25rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-soft {
  background: var(--color-surface-soft);
}

.center {
  text-align: center;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 226, 220, 0.85);
}

.header-inner,
.footer-inner,
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-inner {
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: inherit;
  flex: 0 0 auto;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.05;
  color: #2a2a2a;
}

.brand-text span:first-child {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text span:last-child {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--color-text-soft);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--color-text-soft);
  font-weight: 500;
} 

.send-message {
   margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.25rem 1.3rem; /* was 0.85rem 1.3rem; */
  border-radius: 999px;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  transition: 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--color-primary-deep);
  border-color: var(--color-primary-deep);
  color: #fff;
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  color: var(--color-primary);
}

.button-secondary:hover,
.button-secondary:focus {
  color: #fff;
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.hero {
  padding-top: 3rem;
}

.hero-grid,
.intro-grid,
.services-layout,
.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
}

.intro-grid {
  grid-template-columns: 1fr 0.9fr;
}

.hero-copy,
.section-heading {
  max-width: 760px;
}

.hero-copy {
  max-width: 650px;
}

.hero-lead,
.section-heading p,
.intro-grid p,
.leader-bio p,
.support-card p,
.contact-grid > div > p {
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

.hero-actions,
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions {
  margin: 1.4rem 0 1.2rem;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.media-card,
.pillar-card,
.service-card,
.leader-card,
.support-card,
.contact-card,
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.media-card {
  overflow: hidden;
}

.media-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.hero-media img {
  aspect-ratio: 12 / 7;
}

.intro-media img,
.services-media img {
  aspect-ratio: 3 / 2;
}

.intro-band {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.callout {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--color-primary);
  background: #fbfcfb;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-weight: 600;
  color: var(--color-text);
}

.section-heading {
  margin-bottom: 0.25rem;  /* was 2.25rem; */ 
}

.pillars-grid,
.services-grid,
.support-grid,
.contact-cards {
  display: grid;
  gap: 1.25rem;
}

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

.pillar-card,
.service-card,
.support-card,
.contact-card {
  padding: 1.6rem;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(21, 126, 70, 0.1);
  color: var(--color-primary);
  font-weight: 700;
}

.pillar-card p,
.service-card li,
.contact-card p,
.form-note,
.timeline li {
  color: var(--color-text-soft);
}

.services-layout {
  grid-template-columns: 1fr;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.service-card h3,
.contact-card h3,
.detail-block h4 {
  margin-bottom: 0.8rem;
}

.service-card ul,
.timeline {
  margin: 0;
  padding-left: 1.1rem;
}

.leaders-stack {
  display: grid;
  gap: 1.5rem;
}

.leader-card {
  padding: 2rem;
}

.leader-summary {
  display: flex;
  align-items: flex-end;  /* was center; */
  gap: 1rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

.leader-summary h3 {
margin-bottom: 0.15rem;
}

.portrait {
  width: 125px; /* was 84px */
  height: 125x; /* was 84px */
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #f4f7f4;
  flex: 0 0 auto;
}

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

.credentials,
.support-role {
  margin: 0;
  font-weight: 600;
  color: var(--color-primary);
}

.leader-body,
.leader-details,
.two-col-details,
.field-row,
.contact-cards {
  display: grid;
  gap: 1.25rem;
}

.leader-body {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.timeline li + li {
  margin-top: 0.6rem;
}

.support-grid,
.contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.support-header {
  display: flex;
  align-items: flex-end;  /* was center; */
  gap: 1rem;
  margin-bottom: 1rem;
}

.support-header h3 {
margin-bottom: 0.15rem;
}

.support-photo {
  width: 125px; /* was 72px */
  height: 125x; /* was 72px */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #f4f7f4;
  flex: 0 0 auto;
}

.support-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band {
  background: var(--color-primary-deep);
  color: #fff;
}

.cta-band h2,
.cta-band .eyebrow,
.site-footer,
.site-footer a {
  color: #fff;
}

.text-link {
  color: #dff3e7;
  font-weight: 600;
}

.contact-grid {
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 1.25rem;
}

.contact-form {
  padding: 1.5rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

label {
  font-weight: 600;
  color: #383838;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.25rem 1rem; /* was 0.95rem 1rem; */
  font: inherit;
  color: var(--color-text);
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(21, 126, 70, 0.14);
  border-color: var(--color-primary);
}

.form-note {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
}

.site-footer {
  padding: 1.4rem 0;
  background: #1e1e1e;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .intro-grid,
  .contact-grid,
  .leader-body {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.5rem 0;
  }

  .site-nav {
    width: 100%;
    order: 3;
  }

  .site-nav ul,
  .header-inner,
  .footer-inner,
  .cta-band-inner,
  .hero-contact,
  .field-row,
  .services-grid,
  .pillars-grid,
  .support-grid,
  .contact-cards {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .site-nav ul {
    display: grid;
    justify-items: center;
    gap: 0.8rem;
    padding-bottom: 0.5rem;
  }

  .header-cta {
    width: 100%;
  }

  .leader-card {
    padding: 1.4rem;
  }

  .pillar-card,
  .service-card,
  .support-card,
  .contact-card,
  .contact-form {
    border-radius: 20px;
  }
}


@media (max-width: 720px) {
  .brand-logo {
    height: 44px;
  }
}


@media (max-width: 900px) {
  .brand-text span:first-child {
    font-size: 1rem;
  }

  .brand-text span:last-child {
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 0.65rem;
  }

  .brand-logo {
    height: 46px;
  }

  .brand-text span:first-child {
    font-size: 0.96rem;
  }

  .brand-text span:last-child {
    font-size: 0.76rem;
  }
}


@media (max-width: 980px) {
  .site-nav { display: none; }
  .hero-grid, .intro-grid, .contact-grid, .leader-body { grid-template-columns: 1fr; }
  .pillars-grid, .services-grid, .support-grid, .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-copy { max-width: none; }
  h1 { font-size: clamp(2.45rem, 7vw, 3.25rem); }
}

@media (max-width: 720px) {
  .section { padding: 4.5rem 0; }
  .header-inner, .cta-band-inner, .footer-inner, .brand { flex-wrap: wrap; }
  .header-cta { display: none; }
  .pillars-grid, .services-grid, .support-grid, .contact-cards, .field-row { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.1rem, 10vw, 2.8rem); letter-spacing: -0.03em; }
  h2 { font-size: clamp(1.8rem, 7vw, 2.35rem); }
}
