:root {
  --green-900: #1f351b;
  --green-800: #304918;
  --green-700: #425935;
  --green-100: #eef2e7;
  --cream: #fbf8ef;
  --paper: #fffdf8;
  --charcoal: #222222;
  --muted: #5f6259;
  --gold: #c88b21;
  --blue: #1c3853;
  --line: rgba(66, 89, 53, 0.22);
  --shadow: 0 22px 50px rgba(31, 53, 27, 0.18);
  --content-max: 1160px;
  --page-gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(64px, 8vw, 92px);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 7vw, 80px);
  color: #111;
}

.brand-link {
  display: none;
}

.site-header nav,
.site-footer nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin-left: auto;
}

.site-header a,
.site-footer a {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 94px 20px 64px;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(rgba(20, 32, 16, 0.42), rgba(10, 18, 9, 0.72)),
    url("assets/baboquivari-habitat-scenic.jpg") center top / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 36%, rgba(255, 248, 235, 0.28), rgba(255, 248, 235, 0) 30%);
}

.hero__content {
  width: min(900px, 100%);
  text-align: center;
  color: white;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

.hero__logo {
  width: clamp(200px, 24vw, 290px);
  margin: 0 auto 18px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.26));
}

.kicker {
  margin: 0 0 8px;
  font-size: clamp(1.05rem, 2.1vw, 1.38rem);
  font-weight: 800;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5.4vw, 4.15rem);
  line-height: 0.98;
  text-wrap: balance;
}

h2 {
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.05;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero__copy {
  width: min(780px, 100%);
  margin: 0 auto 12px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.42;
}

.hero__alert {
  width: min(680px, 100%);
  margin: 0 auto 24px;
  color: #f4c45c;
  font-size: 1.04rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0 26px;
  font-size: 0.83rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

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

.button--ghost {
  border-color: white;
  color: white;
}

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

.button--gold {
  width: 100%;
  background: var(--gold);
  color: white;
}

.section {
  width: min(var(--content-max), calc(100% - var(--page-gutter) - var(--page-gutter)));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 7vw, 72px);
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.split--reverse .image-frame {
  order: 2;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 3px solid var(--green-700);
  color: var(--green-700);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__copy p {
  color: #2d2d2d;
}

.callout-text {
  color: var(--green-800) !important;
  font-size: 1.1rem;
  font-weight: 900;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.place-matters {
  text-align: center;
}

.place-matters h2 {
  margin-bottom: 14px;
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  text-align: left;
}

.place-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
  box-shadow: 0 12px 32px rgba(31, 53, 27, 0.08);
}

.place-grid h3 {
  color: var(--green-800);
}

.place-grid p {
  margin-bottom: 0;
  color: #2d2d2d;
}

.map-stack {
  display: grid;
  gap: 18px;
}

.map-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.map-frame a {
  display: block;
}

.map-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: white;
}

.map-frame figcaption {
  padding: 12px 14px 14px;
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
}

.facts {
  padding-top: var(--section-y);
}

.fact-grid,
.action-grid {
  display: grid;
  gap: 28px;
}

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

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

.fact-grid article {
  min-height: 170px;
  padding: 18px 26px 0;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.icon,
.action-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green-700);
  color: white;
  font-weight: 900;
}

.belief-band {
  width: min(var(--content-max), calc(100% - var(--page-gutter) - var(--page-gutter)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: clamp(26px, 6vw, 58px);
  align-items: center;
  padding: var(--section-y) 0;
  background:
    linear-gradient(90deg, rgba(238, 242, 231, 0.96), rgba(255, 253, 248, 0.84)),
    url("assets/shaded-bg-flower.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.belief-band h2 {
  max-width: 700px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.belief-band__main > p:not(.eyebrow) {
  max-width: 730px;
  color: #2d2d2d;
  font-weight: 700;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.principle-grid article {
  min-height: 118px;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.principle-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--green-700);
  font-weight: 900;
}

.principle-grid p {
  margin: 0;
  font-weight: 800;
  line-height: 1.25;
}

.belief-band aside {
  padding-left: clamp(0px, 3vw, 42px);
  border-left: 1px solid var(--line);
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  font-weight: 900;
  line-height: 1.25;
}

.belief-band aside strong {
  display: block;
  margin-top: 20px;
  color: var(--green-700);
}

.support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 22px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.support-list li {
  position: relative;
  min-height: 28px;
  padding-left: 34px;
  font-weight: 800;
}

.support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--green-700);
}

.support-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 7px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.concern-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.concern-list li {
  position: relative;
  padding-left: 32px;
}

.concern-list li::before {
  content: "x";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-700);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
}

.note-box {
  padding: 20px 24px;
  border-left: 5px solid var(--green-700);
  background: var(--green-100);
}

.note-box p,
.note-box strong {
  margin: 0;
}

.message-panel {
  min-height: 330px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.message-panel p {
  margin: 0;
  color: var(--green-800);
  font-size: clamp(1.55rem, 3.5vw, 2.55rem);
  font-weight: 900;
  line-height: 1.02;
  text-wrap: balance;
}

.message-panel--green {
  background:
    linear-gradient(rgba(31, 53, 27, 0.82), rgba(31, 53, 27, 0.82)),
    url("assets/open-desert.png") center / cover no-repeat;
}

.message-panel--green p {
  color: white;
}

.deer-section {
  width: min(var(--content-max), calc(100% - var(--page-gutter) - var(--page-gutter)));
  margin: 0 auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--section-y) 0;
  background:
    radial-gradient(circle at 58% 48%, rgba(200, 139, 33, 0.22), rgba(200, 139, 33, 0) 28%),
    linear-gradient(90deg, rgba(251, 248, 239, 0.98) 0%, rgba(251, 248, 239, 0.88) 48%, rgba(238, 242, 231, 0.72) 100%),
    repeating-linear-gradient(112deg, rgba(66, 89, 53, 0.08) 0 1px, transparent 1px 18px),
    url("assets/shaded-bg-flower.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deer-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(78vw, 1080px);
  height: 78%;
  background:
    linear-gradient(90deg, rgba(66, 89, 53, 0.13), rgba(66, 89, 53, 0) 1px) 0 0 / 54px 54px,
    linear-gradient(rgba(66, 89, 53, 0.1), rgba(66, 89, 53, 0) 1px) 0 0 / 54px 54px;
  mask-image: radial-gradient(ellipse at center, black 0%, black 58%, transparent 78%);
  transform: translate(-50%, -50%);
}

.deer-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: clamp(560px, 50vw, 900px);
  height: clamp(560px, 50vw, 900px);
  background: url("assets/mule-deer.png") center top / contain no-repeat;
  filter: saturate(0.9) contrast(1.08);
  opacity: 0.5;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
}

.deer-section__copy {
  position: relative;
  max-width: 790px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  border-left: 7px solid var(--green-700);
  background: rgba(255, 253, 248, 0.76);
  backdrop-filter: blur(0.5px);
  box-shadow: 0 18px 50px rgba(31, 53, 27, 0.08);
}

.deer-section__copy p:not(.eyebrow) {
  color: #2d2d2d;
}

.deer-section .callout-text {
  width: fit-content;
  margin-top: 26px;
  padding: 14px 18px;
  background: var(--green-800);
  color: white !important;
  border-radius: 6px;
}

.action {
  width: min(var(--content-max), calc(100% - var(--page-gutter) - var(--page-gutter)));
  text-align: center;
}

.action h2 {
  margin-bottom: 8px;
}

.section-intro {
  width: min(620px, 100%);
  margin: 0 auto 30px;
}

.petition-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  margin: 38px 0 32px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(66, 89, 53, 0.16);
  border-radius: 8px;
  background: #fffefa;
  box-shadow: 0 16px 38px rgba(31, 53, 27, 0.08);
  text-align: left;
}

.petition-band h3 {
  margin-bottom: 14px;
  color: var(--green-800);
}

.petition-band p {
  margin-bottom: 0;
  color: var(--muted);
}

.petition-statement {
  margin-bottom: 14px !important;
  color: var(--charcoal) !important;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 900;
  line-height: 1.18;
}

.petition-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.petition-form .checkbox-field,
.petition-form .button {
  grid-column: 1 / -1;
}

.action-card {
  display: flex;
  min-height: 450px;
  flex-direction: column;
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgba(66, 89, 53, 0.13);
  border-radius: 8px;
  background: #fffefa;
  box-shadow: 0 12px 32px rgba(31, 53, 27, 0.08);
  text-align: left;
}

.action-card--warm {
  background: #fff7e8;
}

.action-card__icon {
  margin-left: 0;
}

.action-card__icon--blue {
  background: var(--blue);
}

.action-card__icon--gold {
  background: var(--gold);
}

.action-card p {
  color: var(--muted);
}

.action-card dl {
  display: grid;
  gap: 9px;
  margin: auto 0 22px;
}

.action-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(66, 89, 53, 0.16);
  padding-bottom: 8px;
}

.action-card dt {
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.action-card dd {
  margin: 0;
  color: var(--charcoal);
}

.action-card--meetings dl div {
  display: grid;
  gap: 2px;
  justify-content: stretch;
}

.call-list {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.call-row {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(28, 56, 83, 0.22);
  border-radius: 6px;
  padding: 14px;
  background: white;
  color: var(--charcoal);
}

.call-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.call-row strong {
  color: var(--blue);
  font-size: 1.22rem;
}

form {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

label span {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
}

input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(66, 89, 53, 0.28);
  border-radius: 4px;
  padding: 0 12px;
  background: white;
  color: var(--charcoal);
}

.checkbox-field {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
}

.checkbox-field input {
  width: auto;
  min-height: 0;
  margin-top: 2px;
}

.closing-message {
  width: min(var(--content-max), calc(100% - var(--page-gutter) - var(--page-gutter)));
  margin: 0 auto;
  padding: var(--section-y) 0;
  background:
    linear-gradient(rgba(31, 53, 27, 0.88), rgba(31, 53, 27, 0.88)),
    url("assets/baboquivari-habitat-scenic.jpg") center top / cover no-repeat;
  color: white;
  text-align: center;
}

.closing-message h2 {
  margin-bottom: 12px;
  color: white;
}

.closing-message p {
  width: min(640px, 100%);
  margin: 0 auto;
  font-size: 1.15rem;
  font-weight: 800;
}

.closing-message p + p {
  margin-top: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 34px clamp(20px, 8vw, 90px);
  background: linear-gradient(135deg, var(--green-900), #31461e);
  color: white;
}

.site-footer nav {
  max-width: 470px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer > div {
  display: flex;
  gap: 26px;
  align-items: center;
}

.site-footer img {
  width: 170px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.22));
}

.site-footer__copy {
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

.site-footer__note {
  font-size: 0.78rem;
  font-weight: 500 !important;
  line-height: 1.35;
  opacity: 0.76;
}

@media (max-width: 860px) {
  .site-header {
    position: fixed;
    padding: 14px 18px;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 8px 28px rgba(31, 53, 27, 0.12);
  }

  .brand-link {
    display: block;
  }

  .brand-link img {
    width: 62px;
    filter: drop-shadow(0 6px 8px rgba(31, 53, 27, 0.16));
  }

  .site-header nav {
    gap: 14px;
  }

  .site-header a {
    font-size: 0.67rem;
  }

  .hero {
    min-height: 720px;
    padding-top: 200px;
  }

  .hero__copy {
    font-size: 0.96rem;
  }

  .split,
  .split--reverse,
  .belief-band,
  .fact-grid,
  .place-grid,
  .petition-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .petition-form {
    grid-template-columns: 1fr;
  }

  .deer-section::before {
    inset: auto auto 28px 50%;
    width: 96vw;
    height: 48%;
    transform: translateX(-50%);
  }

  .deer-section::after {
    top: auto;
    left: 50%;
    bottom: -170px;
    width: 560px;
    height: 560px;
    opacity: 0.22;
    transform: translateX(-50%);
  }

  .deer-section__copy {
    background: rgba(255, 253, 248, 0.78);
  }

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

  .split--reverse .image-frame {
    order: 0;
  }

  .fact-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
  }

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

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

  .support-list {
    grid-template-columns: 1fr;
  }

  .belief-band aside {
    padding-left: 0;
    border-left: 0;
  }

  .site-footer > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
  }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 8px;
    max-width: 250px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__logo {
    width: 210px;
  }

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

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

  .action-card {
    padding: 22px;
  }
}
