:root {
  --ink: #1d2a22;
  --pine: #2f4f2f;
  --pine-dark: #17271b;
  --sage: #71886e;
  --sage-light: #d9e3d5;
  --paper: #fbfaf7;
  --mist: #eef3ed;
  --line: rgba(47, 79, 47, 0.16);
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(29, 42, 34, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: clamp(136px, 16vw, 214px);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(29, 42, 34, 0.78);
}

.site-nav a,
.header-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover {
  color: var(--pine);
}

.header-action,
.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-action {
  background: var(--pine);
  color: var(--white);
}

.button:hover,
.header-action:hover {
  transform: translateY(-1px);
}

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

.button-primary:hover {
  background: var(--pine-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero {
  min-height: calc(88svh - 84px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(48px, 5vw, 74px) clamp(18px, 4vw, 58px);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 39, 27, 0.92), rgba(47, 79, 47, 0.62) 48%, rgba(47, 79, 47, 0.18)),
    linear-gradient(0deg, rgba(23, 39, 27, 0.36), rgba(23, 39, 27, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  color: var(--white);
}

.hero .eyebrow,
.hero-facts dt {
  color: var(--sage-light);
}

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

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 8vw, 7.3rem);
  line-height: 0.9;
  font-weight: 700;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.14rem, 2vw, 1.55rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 38px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 780px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
}

.hero-facts div {
  min-height: 86px;
  padding: 18px;
  background: rgba(23, 39, 27, 0.3);
}

.hero-facts dt {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-weight: 800;
}

.intro,
.community-section,
.audiences,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 58px);
}

.intro {
  padding-top: clamp(34px, 4vw, 48px);
}

.section-heading {
  max-width: 560px;
}

h2 {
  margin-bottom: 0;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
}

h3 {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.intro-copy {
  max-width: 760px;
  color: rgba(29, 42, 34, 0.78);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
}

.priorities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--white);
}

.priorities article {
  min-height: 250px;
  padding: clamp(26px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.priorities article:last-child {
  border-right: 0;
}

.priorities span {
  display: block;
  margin-bottom: 34px;
  color: var(--sage);
  font-weight: 900;
}

.priorities p,
.community-card p,
.community-card li,
.audience-grid p,
.contact-copy p,
.site-footer {
  color: rgba(29, 42, 34, 0.72);
}

.community-section {
  background: var(--mist);
}

.community-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

.community-media {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.community-media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(29, 42, 34, 0.12);
}

.community-media img:first-child {
  grid-row: 1 / 3;
}

.community-card,
.audience-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.community-card {
  padding: clamp(24px, 4vw, 38px);
}

.community-card h3 {
  margin-bottom: 16px;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.community-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding-left: 20px;
}

.audiences {
  background: var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.audience-grid article {
  min-height: 196px;
  padding: 26px;
  box-shadow: none;
}

.contact-section {
  background: var(--pine);
  color: var(--white);
}

.contact-section h2,
.contact-section h3 {
  color: var(--white);
}

.contact-copy {
  max-width: 570px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

address {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  font-style: normal;
  font-weight: 800;
}

address a:hover {
  color: var(--sage-light);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(29, 42, 34, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(47, 79, 47, 0.2);
  border-radius: 6px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pine);
  outline: 3px solid rgba(47, 79, 47, 0.18);
}

.contact-form button {
  width: fit-content;
  min-width: 170px;
}

.hidden-field {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 58px);
  background: #101715;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 68svh;
  }

  .hero-facts,
  .intro,
  .community-section,
  .audiences,
  .contact-section,
  .community-feature,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

  .priorities article:nth-child(2) {
    border-right: 0;
  }

  .priorities article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 74px;
    padding: 10px 16px;
  }

  .brand img {
    width: 134px;
  }

  .header-action {
    min-height: 40px;
    padding-inline: 13px;
  }

  .hero {
    min-height: auto;
    padding: 40px 16px 30px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.6rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0 22px;
  }

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

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts div {
    min-height: 112px;
    padding: 12px 10px;
  }

  .hero-facts dt {
    font-size: 0.62rem;
  }

  .hero-facts dd {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .intro,
  .community-section,
  .audiences,
  .contact-section {
    padding: 48px 16px;
  }

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

  .priorities article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .priorities article:last-child {
    border-bottom: 0;
  }

  .community-media {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .community-media img:first-child {
    grid-row: auto;
  }

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