:root {
  --c-bg: #f2f3f0;
  --c-surface: #fbfbf8;
  --c-soft: #eef1ec;
  --c-ink: #171b19;
  --c-muted: #4f5953;
  --c-green: #0f7048;
  --c-green-dark: #073d30;
  --c-lime: #bdd84a;
  --c-line: rgba(23, 27, 25, 0.12);
  --shadow-panel: 0 12px 36px rgba(25, 40, 32, 0.12);
  --shadow-card: 0 8px 22px rgba(25, 40, 32, 0.1);
  --radius: 8px;
  --container: 1160px;
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--c-lime);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--c-ink);
  color: var(--c-surface);
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 248, 0.96);
  border-bottom: 0;
  box-shadow: 0 8px 24px rgba(25, 40, 32, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.is-compact .header-inner {
  min-height: 58px;
}

.site-header.is-compact .brand img {
  width: clamp(145px, 13vw, 175px);
}

.header-action-bar {
  position: relative;
  background: var(--c-green-dark);
  overflow: hidden;
}

.header-action-inner {
  position: relative;
  z-index: 1;
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 760;
}

.header-action-inner p {
  margin: 0;
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
}

.header-action-cta {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  align-items: center;
}

.header-inner {
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  transition: min-height 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(158px, 15vw, 210px);
  height: auto;
  transition: width 180ms ease;
}

.site-nav {
  position: relative;
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  gap: 0.12rem;
  align-items: center;
  border: 1px solid rgba(7, 61, 48, 0.12);
  border-radius: 999px;
  background: var(--c-green-dark);
  padding: 0.32rem;
  box-shadow: 0 12px 28px rgba(25, 40, 32, 0.12);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}

.site-nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.42rem clamp(0.72rem, 1.2vw, 1rem);
  font-size: 0.9rem;
  font-weight: 820;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0.9rem;
  bottom: 0.34rem;
  left: 0.9rem;
  height: 2px;
  background: var(--c-lime);
  opacity: 0;
  content: "";
  transition: opacity 160ms ease;
}

.site-nav a:hover {
  border-color: rgba(189, 216, 74, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.site-nav a.is-active::after {
  opacity: 1;
}

.site-nav a[aria-current="page"],
.site-nav a.is-active {
  border-color: rgba(189, 216, 74, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-nav .nav-donate {
  background: var(--c-lime);
  color: var(--c-green-dark);
}

.site-nav .nav-donate:hover,
.site-nav .nav-donate[aria-current="page"],
.site-nav .nav-donate.is-active {
  background: #d3eb57;
  color: var(--c-green-dark);
}

.site-nav .nav-donate::after {
  background: var(--c-green-dark);
}

.header-cta {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--c-lime);
  padding: 0.36rem 0.9rem;
  color: var(--c-green-dark);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--c-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(1.3rem, 3.5vw, 3rem);
  align-items: start;
  min-height: clamp(440px, 52vw, 560px);
  padding: clamp(1.45rem, 3.2vw, 2.7rem) 0 clamp(1.5rem, 3.5vw, 2.8rem);
}

.hero-help {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  min-height: 0;
}

#get-help {
  scroll-margin-top: 170px;
}

.hero-photo-wrap {
  position: relative;
  height: clamp(360px, 42vw, 500px);
  min-height: 0;
  overflow: hidden;
  background: var(--c-green-dark);
  box-shadow: 0 28px 80px rgba(25, 40, 32, 0.16);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 12% 100%, 0 50%);
  clip-path: url("#hero-side-smile");
}

.hero-photo-wrap::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 61, 48, 0.25), transparent 38%),
    linear-gradient(0deg, rgba(7, 61, 48, 0.18), transparent 54%);
  content: "";
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
}

.clip-defs {
  position: absolute;
}

.hero-curve {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: clamp(44px, 6vw, 76px);
  color: var(--c-bg);
}

.hero-curve path {
  fill: currentColor;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 12.5ch;
  margin-bottom: 1.35rem;
  color: #fff;
  font-size: clamp(2.55rem, 5.2vw, 5rem);
  font-weight: 950;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: #76ba77;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  font-weight: 880;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.45rem;
  color: var(--c-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.66rem 1.15rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: var(--c-green);
  color: #fff;
}

.btn-call {
  background: var(--c-green-dark);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-secondary {
  background: var(--c-surface);
  border-color: var(--c-line);
  color: var(--c-green-dark);
}

.help-panel {
  padding: clamp(1.25rem, 3vw, 2.2rem) 0 clamp(1.4rem, 3.6vw, 2.8rem);
}

.help-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(1rem, 4vw, 3.5rem);
  align-items: start;
  padding-top: clamp(0.65rem, 1.5vw, 1rem);
  border-top: 5px solid var(--c-green);
}

.hero .help-shell {
  grid-template-columns: 1fr;
  width: 100%;
  min-height: 0;
  padding-top: clamp(0.85rem, 1.6vw, 1.15rem);
}

.help-intro,
.flow-step,
.selected-choice {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.help-intro {
  max-width: 560px;
  padding: 0;
  margin-bottom: 0;
}

.help-intro h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.help-intro h1 {
  max-width: 12ch;
  margin-bottom: 0.5rem;
  color: var(--c-ink);
  font-size: clamp(2rem, 4vw, 4rem);
  text-transform: none;
}

.help-intro p:not(.section-kicker),
.flow-step p,
.wildlife-copy p,
.about-copy p,
.support-copy p,
.site-footer p {
  color: var(--c-muted);
}

.flow-step {
  grid-column: 2;
  padding: 0;
}

.flow-history {
  grid-column: 2;
}

.hero .flow-step,
.hero .flow-history {
  grid-column: 1;
}

.flow-step h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-line);
}

.choice-count-2 {
  grid-template-columns: 1fr;
}

.choice-count-3 {
  grid-template-columns: 1fr;
}

.choice-count-5 {
  grid-template-columns: 1fr;
}

.choice-card {
  position: relative;
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 1rem;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--c-line);
  border-radius: 0;
  background: transparent;
  color: var(--c-ink);
  cursor: pointer;
  padding: 0.9rem 0.1rem 0.9rem 1rem;
  text-align: left;
  box-shadow: none;
  transition: background 160ms ease, color 160ms ease, padding-left 160ms ease;
}

.choice-card::before {
  position: absolute;
  top: 0.9rem;
  bottom: 0.9rem;
  left: 0;
  width: 4px;
  background: var(--c-green);
  opacity: 0;
  content: "";
  transition: opacity 160ms ease;
}

.choice-card:hover {
  padding-left: 1.35rem;
  background: rgba(15, 112, 72, 0.045);
}

.choice-card:hover::before,
.choice-card:focus-visible::before {
  opacity: 1;
}

.choice-title {
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  font-weight: 820;
  line-height: 1.28;
}

.choice-arrow {
  color: var(--c-green);
  font-size: 1.85rem;
  font-weight: 900;
}

.selected-choice {
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.35rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--c-line);
  font-weight: 720;
}

.selected-label {
  display: block;
  color: var(--c-muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.link-button {
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--c-green);
  cursor: pointer;
  font-weight: 850;
  text-decoration: underline;
}

.outcome-card {
  max-width: 760px;
}

.action-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.location-note,
.confidentiality-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
}

.location-note h4,
.confidentiality-note h4 {
  margin-bottom: 0.35rem;
  color: var(--c-green-dark);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.location-status {
  min-height: 1.25em;
  margin: 0.45rem 0 0;
  color: var(--c-muted);
  font-size: 0.94rem;
  font-weight: 760;
}

.field-label {
  display: block;
  margin: 0.85rem 0 0.3rem;
  font-weight: 780;
}

.field-label .text-field,
.field-label .text-area,
.field-label .file-field {
  display: block;
  margin-top: 0.32rem;
}

.text-field {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: rgba(242, 243, 240, 0.68);
  color: var(--c-ink);
  padding: 0.65rem 0.8rem;
}

.text-area {
  width: 100%;
  min-height: 108px;
  resize: vertical;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: rgba(242, 243, 240, 0.68);
  color: var(--c-ink);
  padding: 0.65rem 0.8rem;
}

.file-field {
  width: 100%;
  border: 1px dashed rgba(15, 112, 72, 0.36);
  border-radius: var(--radius);
  background: rgba(242, 243, 240, 0.68);
  padding: 0.7rem;
}

.flow-form {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
}

.flow-form .btn-primary {
  margin-top: 0.85rem;
}

.form-section h4 {
  margin: 0 0 0.7rem;
  color: var(--c-green-dark);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

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

.form-help {
  margin: 0.7rem 0;
  color: var(--c-muted);
}

.radio-group {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0.3rem;
  padding: 0.9rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
}

.radio-group legend {
  padding: 0 0.35rem;
  font-weight: 850;
}

.radio-group label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status,
.choice-prompt {
  margin: 0.65rem 0 0;
  font-weight: 720;
}

.wildlife-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(310px, 0.4fr);
  gap: clamp(1.3rem, 4.8vw, 4rem);
  align-items: end;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: clamp(2.2rem, 5.8vw, 5rem) 0;
}

.wildlife-feature::before {
  display: none;
}

.wildlife-media {
  position: relative;
  min-height: clamp(470px, 50vw, 640px);
}

.wildlife-image-wrap {
  position: relative;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(25, 40, 32, 0.13);
}

.wildlife-top-curve {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: clamp(34px, 5vw, 64px);
  color: var(--c-bg);
}

.wildlife-top-curve path {
  fill: currentColor;
}

.wildlife-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wildlife-image-main {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 84%;
  height: 66%;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 84% 100%, 0 100%);
}

.wildlife-image-main img {
  object-position: 54% 50%;
}

.wildlife-image-bat {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 42%;
  height: 42%;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 88%);
}

.wildlife-image-bat img {
  object-position: 52% 45%;
}

.wildlife-image-seal {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 32%;
  height: 24%;
  clip-path: polygon(9% 0, 100% 0, 100% 88%, 86% 100%, 0 100%, 0 14%);
}

.wildlife-image-seal img {
  object-position: 54% 44%;
}

.wildlife-content {
  display: block;
}

.wildlife-copy {
  padding: 0;
  background: transparent;
}

.wildlife-copy h2,
.about-copy h2 {
  text-transform: uppercase;
}

.wildlife-routes {
  display: grid;
  margin-top: 1.2rem;
  border-top: 2px solid var(--c-green);
}

.wildlife-routes a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-green-dark);
  font-weight: 780;
  text-decoration: none;
}

.wildlife-routes a::after {
  color: var(--c-green);
  content: "›";
}

.about-section {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.about-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(1rem, calc((100vw - var(--container)) / 2));
  width: 5px;
  background: var(--c-green);
  content: "";
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(280px, 0.46fr);
  gap: clamp(1.5rem, 4.2vw, 3.8rem);
  align-items: center;
  padding-left: clamp(1.4rem, 3vw, 2.4rem);
}

.about-copy {
  max-width: 560px;
}

.about-photo {
  position: relative;
  margin: 0;
  width: min(100%, 460px);
  justify-self: end;
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 18px 46px rgba(25, 40, 32, 0.12);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
}

.road-deer-photo {
  height: clamp(360px, 38vw, 520px);
}

.road-deer-photo img {
  object-fit: contain;
  object-position: 50% 50%;
}

.text-link {
  color: var(--c-green-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.support-section {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--c-green-dark);
  color: #fff;
  padding: 0;
}

.support-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.06) 0 38%, transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 48%);
  content: "";
}

.support-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
  gap: clamp(1.5rem, 5vw, 4.2rem);
  align-items: center;
  min-height: clamp(340px, 35vw, 450px);
  padding: clamp(2.4rem, 5vw, 4rem) 0;
}

.support-copy {
  max-width: 620px;
}

.support-copy .eyebrow,
.support-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.support-copy h2 {
  color: #fff;
  max-width: 14ch;
  font-size: clamp(2rem, 4.2vw, 3.9rem);
}

.support-copy .strong-line {
  max-width: 46ch;
  margin-bottom: 1.25rem;
  color: #fff;
  font-weight: 850;
}

.support-section .btn-primary {
  min-width: 188px;
  min-height: 48px;
  background: var(--c-lime);
  color: var(--c-green-dark);
}

.support-photo {
  width: min(100%, 520px);
  height: clamp(300px, 32vw, 410px);
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  clip-path: polygon(9% 0, 100% 0, 100% 83%, 86% 100%, 0 100%, 0 13%);
}

.support-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(7, 61, 48, 0.36), transparent 42%),
    linear-gradient(0deg, rgba(7, 61, 48, 0.18), transparent 54%);
  content: "";
}

.support-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 42%;
  filter: saturate(0.95) contrast(1.04);
}

.terms-page {
  background: var(--c-bg);
}

.page-hero {
  padding: clamp(1.5rem, 3.2vw, 2.8rem) 0 clamp(1.1rem, 2.6vw, 2rem);
}

.page-hero-inner,
.split-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(320px, 0.44fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: center;
}

.page-hero h1,
.form-page h1 {
  max-width: 14ch;
  margin-bottom: 0.75rem;
  color: var(--c-ink);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  text-transform: none;
}

.page-hero p:not(.section-kicker),
.split-page-copy p,
.advice-body p,
.form-intro p {
  color: var(--c-muted);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
}

.page-photo,
.page-photo-stack figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--c-green-dark);
  box-shadow: 0 22px 62px rgba(25, 40, 32, 0.15);
}

.page-photo {
  height: clamp(260px, 30vw, 380px);
  min-height: 0;
  clip-path: polygon(0 0, 100% 0, 96% 86%, 84% 100%, 0 100%);
}

.page-photo img,
.page-photo-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-photo::after,
.page-photo-stack figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 61, 48, 0.18), transparent 58%);
  content: "";
}

.page-band,
.form-page,
.advice-page {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.split-page-grid {
  align-items: start;
}

.route-grid,
.advice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.route-card,
.advice-card {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid var(--c-green);
  background: rgba(251, 251, 248, 0.58);
  padding: 1rem;
  color: var(--c-ink);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(25, 40, 32, 0.08);
}

.route-card h2,
.advice-card h2,
.route-card h3,
.advice-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
}

.route-card p,
.advice-card p {
  margin-bottom: 0.8rem;
  color: var(--c-muted);
  font-size: 0.96rem;
}

.route-card span,
.advice-card span {
  color: var(--c-green);
  font-weight: 850;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.feature-list li {
  padding-left: 1rem;
  border-left: 4px solid var(--c-green);
  color: var(--c-muted);
}

.advice-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(260px, 0.34fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.advice-body {
  padding-top: 1rem;
  border-top: 5px solid var(--c-green);
}

.advice-body h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
  color: var(--c-ink);
  font-size: clamp(2rem, 4vw, 4rem);
  text-transform: none;
}

.advice-body h2 {
  margin-top: 1.7rem;
  font-size: 1.35rem;
}

.advice-aside {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.advice-aside h2 {
  font-size: 1.2rem;
}

.form-card {
  max-width: 880px;
  padding-top: 1rem;
  border-top: 5px solid var(--c-green);
}

.flow-form {
  margin-top: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

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

.text-area {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: rgba(242, 243, 240, 0.68);
  color: var(--c-ink);
  padding: 0.65rem 0.8rem;
}

.select-field,
.file-field {
  width: 100%;
  min-height: 44px;
}

.radio-group {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 0;
  border: 0;
}

.radio-group legend {
  margin-bottom: 0.35rem;
  font-weight: 850;
}

.radio-group label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: var(--c-muted);
  font-weight: 680;
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.form-status {
  min-height: 1.4em;
  margin: 0.75rem 0 0;
  color: var(--c-green-dark);
  font-weight: 760;
}

.donation-panel {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--c-green-dark);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 96% 88%, 82% 100%, 0 100%);
}

.donation-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.donation-panel .btn-primary {
  width: fit-content;
  background: var(--c-lime);
  color: var(--c-green-dark);
}

.donate-hero {
  padding: clamp(1.2rem, 3vw, 2.4rem) 0;
  background: var(--c-green-dark);
  color: #fff;
}

.donate-hero .page-hero-inner {
  align-items: center;
}

.donate-hero h1 {
  color: #fff;
}

.donate-hero p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.donate-hero .section-kicker {
  color: var(--c-lime);
}

.donate-hero .btn-primary {
  background: var(--c-lime);
  color: var(--c-green-dark);
}

.donate-hero .btn-secondary {
  background: rgba(255, 255, 255, 0.95);
}

.donate-photo {
  height: clamp(260px, 30vw, 390px);
  min-height: 0;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 86% 100%, 0 100%, 6% 50%);
}

.donate-photo img {
  object-position: 50% 42%;
}

.donation-choice-section {
  padding: clamp(1.8rem, 4vw, 3rem) 0 clamp(1.1rem, 2.6vw, 2rem);
}

.donation-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: start;
}

.donation-choice {
  padding-top: 1rem;
  border-top: 5px solid var(--c-green);
}

.donation-choice h2 {
  margin-bottom: 0.45rem;
}

.donation-buttons {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.donation-button {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(7, 61, 48, 0.12);
  border-radius: var(--radius);
  background: rgba(251, 251, 248, 0.72);
  padding: 0.85rem 1rem;
  color: var(--c-green-dark);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(25, 40, 32, 0.08);
  transition: background 160ms ease, transform 160ms ease;
}

.donation-button:hover {
  background: #fff;
  transform: translateY(-1px);
}

.donation-amount {
  font-size: 1.45rem;
  font-weight: 950;
}

.donation-label {
  color: var(--c-muted);
  font-weight: 760;
}

.donation-feature {
  margin-top: clamp(1.3rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
}

.donation-feature .page-photo {
  height: clamp(220px, 24vw, 320px);
}

.donation-choice-section + .page-band {
  padding-top: clamp(1rem, 2.2vw, 1.8rem);
}

.support-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.support-route {
  border-top: 4px solid var(--c-green);
  background: rgba(251, 251, 248, 0.62);
  padding: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(25, 40, 32, 0.08);
}

.support-route h2 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

.support-route p {
  margin-bottom: 0;
  color: var(--c-muted);
}

.page-photo-stack {
  min-height: 460px;
  position: relative;
}

.page-photo-stack figure {
  position: absolute;
}

.page-photo-stack figure:nth-child(1) {
  inset: 0 18% 26% 0;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.page-photo-stack figure:nth-child(2) {
  inset: 38% 0 0 36%;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
}

.terms-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1.2rem, 3vw, 2rem);
}

.terms-hero h1 {
  max-width: 12ch;
  margin-bottom: 0.8rem;
  color: var(--c-ink);
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  text-transform: none;
}

.terms-hero p:not(.section-kicker) {
  max-width: 680px;
  color: var(--c-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.terms-content {
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.terms-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.terms-summary {
  padding-top: 0.95rem;
  border-top: 5px solid var(--c-green);
}

.terms-summary p {
  margin: 0;
  color: var(--c-green-dark);
  font-size: 1.05rem;
  font-weight: 820;
}

.terms-body {
  padding-top: 0.95rem;
  border-top: 1px solid var(--c-line);
}

.terms-body h2 {
  margin-top: 1.55rem;
  font-size: 1.25rem;
}

.terms-body h2:first-child {
  margin-top: 0;
}

.terms-body p {
  max-width: 760px;
  color: var(--c-muted);
}

.privacy-page {
  background: var(--c-bg);
}

.privacy-hero {
  padding: clamp(2.2rem, 5vw, 4.6rem) 0 clamp(1.2rem, 3vw, 2.2rem);
}

.privacy-hero-inner {
  max-width: 820px;
}

.privacy-hero h1 {
  max-width: 13ch;
  margin-bottom: 0.85rem;
  color: var(--c-ink);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  text-transform: none;
}

.privacy-hero p:not(.section-kicker) {
  max-width: 650px;
  color: var(--c-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.privacy-content {
  padding: 0 0 clamp(2.8rem, 6vw, 5rem);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(1.6rem, 4.5vw, 4.5rem);
  align-items: start;
}

.privacy-summary {
  position: sticky;
  top: 145px;
  padding-top: 1rem;
  border-top: 5px solid var(--c-green);
}

.privacy-summary p {
  margin: 0 0 0.9rem;
  color: var(--c-green-dark);
  font-size: 1rem;
  font-weight: 760;
}

.privacy-body {
  display: grid;
  gap: clamp(1.55rem, 3.5vw, 2.8rem);
}

.privacy-section {
  max-width: 760px;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
}

.privacy-section-offset {
  margin-left: clamp(0rem, 6vw, 4.5rem);
}

.privacy-section h2,
.privacy-feature h2 {
  margin-bottom: 0.7rem;
  color: var(--c-ink);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  text-transform: none;
}

.privacy-section p {
  max-width: 68ch;
  color: var(--c-muted);
}

.privacy-feature {
  max-width: 850px;
  margin: clamp(0.4rem, 1vw, 0.8rem) 0;
  padding: clamp(1.4rem, 3.5vw, 2.6rem);
  background:
    linear-gradient(118deg, rgba(190, 226, 48, 0.16) 0 30%, transparent 30%),
    var(--c-green-dark);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 96% 86%, 84% 100%, 0 100%);
}

.privacy-feature .section-kicker {
  color: var(--c-lime);
}

.privacy-feature h2 {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
}

.privacy-feature p {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.84);
}

.privacy-feature p:nth-of-type(3) {
  color: #fff;
  font-weight: 850;
}

.privacy-section-final {
  padding-bottom: 1.4rem;
  border-bottom: 5px solid var(--c-green);
}

.site-footer {
  padding: 0.8rem 0 0.7rem;
  background: #dde5da;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 0.85rem 1.25rem;
  align-items: center;
}

.footer-logo {
  width: 118px;
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.95rem;
}

.site-footer nav a {
  color: var(--c-green-dark);
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
}

.footer-helpline {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: right;
}

.footer-helpline span {
  display: block;
  color: var(--c-muted);
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
}

.footer-helpline a {
  display: inline-block;
  margin-top: 0.15rem;
  color: var(--c-green-dark);
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(7, 61, 48, 0.12);
  text-align: center;
}

.footer-legal p {
  margin: 0;
  color: var(--c-muted);
  font-size: 0.78rem;
  font-weight: 680;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  width: min(520px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(7, 61, 48, 0.16);
  border-radius: var(--radius);
  background: rgba(251, 251, 248, 0.98);
  box-shadow: 0 18px 55px rgba(25, 40, 32, 0.2);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--c-muted);
  font-size: 0.84rem;
  line-height: 1.42;
}

.cookie-banner .cookie-title {
  margin-bottom: 0.18rem;
  color: var(--c-green-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.cookie-actions .btn {
  min-height: 36px;
  padding: 0.52rem 0.78rem;
  font-size: 0.82rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .header-action-inner {
    grid-template-columns: minmax(0, 1fr) max-content;
  }

  .header-action-inner p {
    white-space: normal;
  }

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

  .support-grid {
    grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
  }

  .help-shell {
    grid-template-columns: minmax(200px, 0.32fr) minmax(0, 0.68fr);
  }
}

@media (max-width: 840px) {
  html {
    scroll-padding-top: 126px;
  }

  .header-action-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-inner {
    min-height: 64px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    background: var(--c-surface);
    color: var(--c-ink);
  }

  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    content: "";
  }

  .nav-toggle-bars {
    position: relative;
  }

  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    position: absolute;
    left: 0;
  }

  .nav-toggle-bars::before {
    top: -7px;
  }

  .nav-toggle-bars::after {
    top: 7px;
  }

  .site-nav {
    position: fixed;
    inset: 126px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    border: 0;
    border-radius: 0;
    background: var(--c-green-dark);
    padding: 0.8rem 1rem 1rem;
    box-shadow: var(--shadow-panel);
    clip-path: none;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 42px;
    justify-content: center;
    color: #fff;
  }

  .header-cta {
    min-height: 34px;
  }

  .hero {
    background: var(--c-bg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 1.4rem;
  }

  .hero-help,
  .hero .help-shell {
    min-height: 0;
  }

  .hero-photo-wrap {
    min-height: 330px;
  }

  .wildlife-feature,
  .help-shell,
  .about-grid,
  .page-hero-inner,
  .split-page-grid,
  .advice-layout,
  .terms-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-summary {
    position: static;
  }

  .privacy-section,
  .privacy-section-offset {
    margin-left: 0;
  }

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

  .help-shell {
    gap: 1.2rem;
  }

  .flow-history,
  .flow-step {
    grid-column: 1;
  }

  .wildlife-feature {
    align-items: start;
  }

  .wildlife-media {
    min-height: 500px;
  }

  .wildlife-copy {
    padding: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-helpline {
    text-align: left;
  }

  .footer-legal {
    text-align: left;
  }

  .support-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .support-copy h2 {
    max-width: 13ch;
  }

  .support-photo {
    height: 330px;
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 102px;
  }

  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .header-action-inner {
    min-height: 38px;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.76rem;
  }

  .header-action-inner span {
    display: none;
  }

  .header-action-inner p {
    max-width: 22ch;
    line-height: 1.16;
  }

  .site-nav {
    inset: 102px 0 auto;
  }

  .header-cta {
    padding: 0.35rem 0.68rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .brand img {
    width: 148px;
  }

  .hero-grid {
    gap: 1.1rem;
    padding: 1rem 0 1.9rem;
  }

  .hero-photo-wrap {
    min-height: 250px;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .action-link {
    width: 100%;
  }

  .help-panel {
    padding-top: 1.7rem;
  }

  .choice-grid,
  .choice-count-2,
  .choice-count-3,
  .choice-count-5 {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 58px;
    grid-template-columns: 1fr 16px;
    padding: 0.75rem 0 0.75rem 0.8rem;
  }

  .selected-choice {
    align-items: flex-start;
    flex-direction: column;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .support-section {
    margin-bottom: 0;
  }

  .support-grid {
    padding: 1.8rem 0;
  }

  .support-section .btn-primary {
    width: auto;
    justify-self: start;
  }

  .support-photo {
    height: 300px;
    margin: 0;
    clip-path: polygon(7% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 10%);
  }

  .wildlife-media {
    min-height: 450px;
  }

  .wildlife-image-main {
    width: 90%;
    height: 60%;
    bottom: 12%;
  }

  .wildlife-image-bat {
    width: 52%;
    height: 34%;
  }

  .wildlife-image-seal {
    top: auto;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 22%;
  }

  .about-grid {
    padding-left: 1rem;
  }

  .about-photo {
    width: 100%;
    justify-self: stretch;
  }

  .route-grid,
  .advice-grid,
  .donation-choice-grid,
  .donation-feature,
  .two-cols {
    grid-template-columns: 1fr;
  }

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

  .page-photo-stack {
    min-height: 360px;
  }

  .cookie-banner {
    right: 0.5rem;
    bottom: 0.5rem;
    width: calc(100% - 1rem);
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
