:root {
  --evergreen: #123C2D;
  --deep-green: #0B261D;
  --navy: #06254A;
  --cream: #F4EFE7;
  --cedar: #B2793B;
  --mist: #DCE5DF;
  --slate: #24302D;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--slate);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .75rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(18, 60, 45, .97);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}
.brand {
  text-decoration: none;
  display: grid;
  line-height: .95;
  letter-spacing: .03em;
}
.brand-main {
  font-size: 2rem;
  font-weight: 950;
  color: var(--cream);
}
.brand-sub {
  font-size: .74rem;
  font-weight: 900;
  color: var(--white);
  border-top: 2px solid var(--cream);
  padding-top: .18rem;
  text-align: center;
}
nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-transform: uppercase;
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .04em;
}
nav a { text-decoration: none; }
.nav-button {
  background: var(--navy);
  padding: .62rem .9rem;
  border-radius: 4px;
}
.menu-toggle {
  display: none;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.4);
  padding: .5rem .75rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 900;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem) 0;
  background:
    linear-gradient(90deg, rgba(244,239,231,.98), rgba(244,239,231,.79) 48%, rgba(244,239,231,.15)),
    url("assets/mountain-river-bg.svg") center/cover no-repeat;
  overflow: hidden;
}
.hero-copy {
  padding-bottom: clamp(3rem, 6vw, 7rem);
  max-width: 820px;
}
.eyebrow {
  margin: 0 0 .9rem;
  color: var(--cedar);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .16em;
  font-size: .82rem;
}
h1, h2, h3 { margin: 0; line-height: .98; }
h1 {
  color: var(--navy);
  font-size: clamp(4rem, 9vw, 8.4rem);
  letter-spacing: -.055em;
  text-transform: uppercase;
  max-width: 940px;
}
h2 {
  color: var(--evergreen);
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  letter-spacing: -.05em;
  text-transform: uppercase;
}
h3 {
  color: var(--evergreen);
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.lede {
  max-width: 720px;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  margin: 1.3rem 0 0;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: .82rem 1.1rem;
  background: var(--evergreen);
  color: var(--white);
  border: 2px solid var(--evergreen);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .04em;
  border-radius: 4px;
}
.button.secondary {
  background: rgba(244,239,231,.62);
  color: var(--evergreen);
}
.button.light {
  background: var(--cream);
  color: var(--evergreen);
  border-color: var(--cream);
}
.tagline {
  margin-top: 2rem;
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--evergreen);
  font-size: 1.24rem;
}
.portrait-card {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 660px;
}
.portrait-card img {
  width: min(100%, 610px);
  display: block;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,.28));
}

.theme-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--deep-green);
  color: var(--cream);
}
.theme-strip div {
  min-height: 120px;
  display: grid;
  justify-items: center;
  text-align: center;
  align-content: center;
  padding: 1.25rem;
  border-left: 1px solid rgba(244,239,231,.24);
}
.theme-strip span { font-size: 2.1rem; }
.theme-strip strong {
  display: block;
  text-transform: uppercase;
  font-size: 1.08rem;
  letter-spacing: .04em;
  margin-top: .35rem;
}
.theme-strip small {
  color: var(--mist);
  max-width: 220px;
  font-size: 0rem;
}

.section {
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
}
.about {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  background: var(--cream);
}
.text {
  max-width: 850px;
  font-size: 1.12rem;
}
.text p:first-child {
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--evergreen);
}

.priorities { background: var(--white); }
.priorities h2 { max-width: 1000px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.cards article {
  background: var(--cream);
  border: 1px solid rgba(18,60,45,.15);
  padding: 1.45rem;
  border-radius: 6px;
  min-height: 260px;
}
.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--evergreen);
  color: var(--cream);
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.district-tree {
  background:
    linear-gradient(90deg, rgba(18,60,45,.96), rgba(18,60,45,.80)),
    url("assets/mountain-river-bg.svg") center/cover no-repeat;
  color: var(--cream);
}
.district-tree .panel { max-width: 880px; }
.district-tree h2 { color: var(--cream); }
.district-tree p {
  font-size: 1.18rem;
  max-width: 780px;
}

.quote {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
}
.quote blockquote {
  margin: 0 auto;
  max-width: 1120px;
  font-size: clamp(1.6rem, 4vw, 3.7rem);
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.get-involved {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 2rem;
  align-items: center;
  background: var(--cream);
}
.get-involved p {
  font-size: 1.15rem;
  max-width: 760px;
}
.action-list {
  display: grid;
  gap: .75rem;
}
.action-list a {
  display: grid;
  gap: .2rem;
  background: var(--white);
  border: 1px solid rgba(18,60,45,.16);
  border-left: 6px solid var(--evergreen);
  padding: 1rem;
  text-decoration: none;
}
.action-list strong {
  color: var(--evergreen);
  text-transform: uppercase;
}
.action-list span { color: var(--slate); }

.contact {
  background: var(--white);
}
.contact-card {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(18,60,45,.16);
  background: var(--cream);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 6px;
}
.contact-card a { color: var(--evergreen); font-weight: 800; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem clamp(1rem, 5vw, 5rem);
  background: var(--deep-green);
  color: var(--cream);
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .04em;
  font-size: .85rem;
}
footer a { color: var(--cream); }

@media (max-width: 1020px) {
  .theme-strip { grid-template-columns: repeat(2, 1fr); }
  .theme-strip div:last-child { grid-column: 1 / -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .site-header { align-items: center; flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; }
  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    padding-top: .75rem;
  }
  nav.open { display: flex; }
  nav a { padding: .75rem 0; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-copy { padding-bottom: 1rem; }
  .portrait-card { min-height: 0; }
  .portrait-card img { max-width: 440px; }
  .about, .get-involved { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  h1 { font-size: 4rem; }
  .cards, .theme-strip { grid-template-columns: 1fr; }
  .theme-strip div:last-child { grid-column: auto; }
  .cards article { min-height: auto; }
  .portrait-card img { max-width: 360px; }
  footer { display: block; }
}


nav {
  gap: 2rem !important;
}

.portrait-card {
  min-height: 860px !important;
  align-items: center !important;
  padding-top: 5rem !important;
  overflow: visible !important;
}

.portrait-card img {
  width: min(100%, 560px) !important;
  max-height: none !important;
  object-fit: contain !important;
}

.tagline {
  max-width: 760px !important;
  white-space: nowrap;
  overflow: visible;
  padding-right: 1rem !important;
}




/* Final production cleanup */
.site-header nav {
  margin-left: auto;
}

.site-header nav a {
  white-space: nowrap;
}

.nav-button,
.menu-toggle {
  display: none !important;
}

.portrait-card {
  min-height: 790px !important;
  align-items: flex-end !important;
  justify-content: center !important;
  padding-top: 2rem !important;
  overflow: visible !important;
}

.portrait-card img {
  width: min(100%, 620px) !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.14)) !important;
}

.tagline {
  max-width: 820px !important;
  white-space: normal !important;
  overflow: visible !important;
  padding-right: 1.2rem !important;
}

@media (max-width: 920px) {
  .site-header nav {
    display: flex !important;
    width: auto !important;
    flex-direction: row !important;
    gap: 1rem !important;
    padding-top: 0 !important;
  }

  .portrait-card {
    min-height: 0 !important;
  }

  .portrait-card img {
    max-width: 380px !important;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 1rem;
  }

  .site-header nav {
    font-size: .72rem !important;
    gap: .75rem !important;
  }

  .portrait-card img {
    max-width: 340px !important;
  }
}
