:root {
  --cream: #fff8ec;
  --linen: #f5e8d4;
  --hay: #d9a441;
  --clay: #9e5435;
  --barn: #783a2d;
  --leaf: #54724f;
  --moss: #253d31;
  --ink: #251b16;
  --muted: #715f52;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(63, 37, 22, 0.14);
  --radius: 8px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(255, 248, 236, 0.94);
  border-bottom: 1px solid rgba(120, 58, 45, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--moss);
  font-weight: 800;
  text-decoration: none;
}

.brand-icon {
  width: clamp(82px, 9vw, 122px);
  height: auto;
  object-fit: contain;
}

.brand-text {
  width: clamp(170px, 18vw, 285px);
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: none;
}

.site-nav a {
  color: var(--moss);
  font-weight: 700;
  text-decoration: none;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--moss);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: var(--cream);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-open .site-nav {
  position: fixed;
  inset: 92px 0 auto 0;
  display: grid;
  gap: 2px;
  padding: 10px 18px 18px;
  background: var(--cream);
  border-bottom: 1px solid rgba(120, 58, 45, 0.16);
  box-shadow: var(--shadow);
}

.nav-open .site-nav a {
  padding: 14px 10px;
  border-radius: var(--radius);
}

.nav-open .site-nav a:hover,
.nav-open .site-nav a:focus {
  background: var(--linen);
}

.section,
.strip,
.story-band,
.site-footer {
  width: min(var(--content), calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-band {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 82vh, 760px);
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(37, 29, 22, 0.82), rgba(37, 29, 22, 0.46)),
    radial-gradient(circle at 78% 28%, rgba(217, 164, 65, 0.45), transparent 28%),
    linear-gradient(135deg, #7c4a2f 0%, #425338 52%, #c18739 100%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -16vw;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  content: "";
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe0a6;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.65rem, 9vw, 6.4rem);
}

h2 {
  max-width: 760px;
  color: var(--moss);
  font-size: clamp(2rem, 5vw, 4.3rem);
}

h3 {
  color: var(--moss);
  font-size: 1.55rem;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.12rem, 2.3vw, 1.42rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--hay);
}

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

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero-mark {
  position: absolute;
  right: clamp(-260px, -8vw, -90px);
  bottom: clamp(-90px, -4vw, -36px);
  z-index: 1;
  width: min(86vw, 1220px);
  opacity: 1;
}

.intro {
  display: grid;
  gap: 1px;
  margin-top: clamp(22px, 4vw, 46px);
  background: rgba(120, 58, 45, 0.18);
  box-shadow: var(--shadow);
}

.intro div {
  padding: 24px;
  background: var(--white);
}

.intro strong,
.intro span {
  display: block;
}

.intro strong {
  color: var(--moss);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
}

.intro span {
  margin-top: 4px;
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.mission-grid {
  display: grid;
  gap: 24px;
}

.mission-copy {
  color: var(--muted);
  font-size: 1.18rem;
}

.mission-copy p {
  margin: 0 0 18px;
}

.impact-panel {
  display: grid;
  align-content: center;
  min-height: 300px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--cream);
  background: var(--moss);
  border-radius: var(--radius);
}

.impact-number {
  color: var(--hay);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
}

.impact-label {
  margin-top: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
}

.impact-note {
  margin-top: 16px;
  color: rgba(255, 248, 236, 0.76);
}

.section-warm {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--content)) / 2));
  background: var(--linen);
}

.animal-grid,
.help-grid {
  display: grid;
  gap: 16px;
}

.animal-grid article,
.feature {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(120, 58, 45, 0.12);
  border-radius: var(--radius);
}

.animal-grid span {
  display: block;
  color: var(--barn);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.animal-grid p,
.feature p,
.split-copy p,
.story-band p,
.form-note {
  color: var(--muted);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--clay);
  border-radius: 50%;
  font-weight: 900;
}

.feature a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--barn);
  font-weight: 900;
  text-decoration: none;
}

.split-section {
  display: grid;
  gap: 28px;
}

.split-copy {
  font-size: 1.12rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--moss);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  background: var(--leaf);
  border-radius: 50%;
  content: "";
}

.story-band {
  display: grid;
  gap: 20px;
  padding: clamp(34px, 7vw, 64px);
  color: var(--white);
  background: var(--barn);
  border-radius: var(--radius);
}

.story-band h2 {
  color: var(--white);
}

.story-band p {
  margin: 0;
  color: rgba(255, 248, 236, 0.82);
  font-size: 1.2rem;
}

.contact-grid {
  display: grid;
  gap: 24px;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-details a {
  display: grid;
  gap: 2px;
  padding: 18px;
  color: var(--ink);
  background: var(--linen);
  border-radius: var(--radius);
  text-decoration: none;
}

.contact-details span {
  color: var(--barn);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 5vw, 34px);
  background: var(--white);
  border: 1px solid rgba(120, 58, 45, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--moss);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(120, 58, 45, 0.24);
  border-radius: var(--radius);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

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

.site-footer {
  display: grid;
  gap: 24px;
  padding: 34px 0 48px;
  border-top: 1px solid rgba(120, 58, 45, 0.16);
}

.site-footer img {
  width: 80px;
}

.site-footer p {
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.site-footer a {
  color: var(--moss);
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 720px) {
  .intro,
  .animal-grid,
  .help-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mission-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    align-items: start;
  }

  .split-section,
  .story-band,
  .site-footer {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
    align-items: center;
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

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

}

@media (max-width: 520px) {
  .button,
  .hero-actions {
    width: 100%;
  }

  .brand {
    gap: 8px;
  }

  .brand-icon {
    width: 70px;
  }

  .brand-text {
    width: min(48vw, 190px);
  }

  .hero-mark {
    right: -64vw;
    bottom: -42px;
    width: 190vw;
    opacity: 0.18;
  }
}
