:root {
  color-scheme: light;
  --ink: #16302c;
  --muted: #65736f;
  --paper: #f5f1e8;
  --surface: #fffdf8;
  --sage: #557d67;
  --leaf: #1f5f52;
  --coral: #d36a4f;
  --sun: #e7b75f;
  --line: #ded7ca;
  --shadow: 0 24px 70px rgba(22, 48, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.75;
}

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

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

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

.site-header,
.brand,
.site-nav,
.hero-actions,
.site-footer,
.contact-band,
.button,
.text-link {
  display: flex;
  align-items: center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: #fff;
  background: linear-gradient(180deg, rgba(12, 30, 28, 0.74), rgba(12, 30, 28, 0));
}

.site-header.solid {
  position: sticky;
  color: var(--ink);
  background: rgba(245, 241, 232, 0.92);
  border-bottom: 1px solid rgba(222, 215, 202, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--coral);
  border-radius: 8px;
}

.brand span:last-child {
  display: grid;
  line-height: 1.2;
}

.brand small,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.solid .brand small {
  color: var(--muted);
}

.site-nav {
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.86;
}

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

.site-nav a[aria-current="page"] {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

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

.hero > img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 30, 28, 0.76) 0%, rgba(12, 30, 28, 0.42) 42%, rgba(12, 30, 28, 0.05) 100%),
    linear-gradient(180deg, rgba(12, 30, 28, 0.12), rgba(12, 30, 28, 0.54));
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 96px;
}

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

.hero .eyebrow {
  color: #ffd2bd;
}

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

h1 {
  max-width: 770px;
  margin-bottom: 20px;
  font-size: 4.7rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.32;
  letter-spacing: 0;
}

.hero-content > p,
.page-hero p {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.contact-form button {
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary,
.contact-form button {
  color: #fff;
  background: var(--leaf);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.intro,
.feature,
.process,
.animals,
.steps,
.support-options,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: 88px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: end;
}

.intro > p,
.feature p,
.process p,
.animal-card p,
.step-list span,
.support-grid p,
.contact p,
.contact-band p {
  color: var(--muted);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stats-band div {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong {
  display: block;
  color: var(--leaf);
  font-size: 2.6rem;
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
  font-weight: 800;
}

.feature,
.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.feature.compact {
  padding-top: 0;
}

.feature figure,
.page-hero img {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature img,
.page-hero img {
  width: 100%;
  aspect-ratio: 1.26;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  margin-top: 10px;
  padding-bottom: 2px;
  color: var(--leaf);
  border-bottom: 2px solid var(--sun);
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.process-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-grid article,
.support-grid article,
.animal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(22, 48, 44, 0.09);
}

.process-grid article,
.support-grid article {
  padding: 28px;
}

.process-grid span,
.support-grid span,
.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 74px;
}

.page-hero.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

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

.animal-card {
  overflow: hidden;
}

.animal-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.animal-card:nth-child(1) img {
  object-position: 20% center;
}

.animal-card:nth-child(2) img {
  object-position: 48% 72%;
}

.animal-card:nth-child(3) img {
  object-position: 70% center;
}

.animal-card:nth-child(4) img {
  object-position: 86% 76%;
}

.animal-card div {
  padding: 22px;
}

.steps {
  border-top: 1px solid var(--line);
}

.step-list {
  display: grid;
  gap: 1px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 24px 28px;
  background: var(--surface);
}

.step-list strong {
  color: var(--leaf);
}

.contact-band {
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 88px;
  padding: 34px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.contact-band .eyebrow,
.contact-band p {
  color: #f6cdb9;
}

.contact-band h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.support-grid article {
  display: grid;
  align-content: start;
  min-height: 240px;
}

.support-grid span {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--leaf);
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfc7ba;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: #fff;
  background: var(--ink);
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .intro,
  .feature,
  .page-hero,
  .page-hero.reverse,
  .contact {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .support-grid,
  .animal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-footer,
  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: sticky;
    color: var(--ink);
    background: rgba(245, 241, 232, 0.94);
    border-bottom: 1px solid rgba(222, 215, 202, 0.82);
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 780px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(12, 30, 28, 0.24), rgba(12, 30, 28, 0.82));
  }

  .hero-content {
    margin-bottom: 54px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .intro,
  .feature,
  .process,
  .animals,
  .steps,
  .support-options,
  .contact {
    padding: 64px 0;
  }

  .stats-band,
  .process-grid,
  .support-grid,
  .animal-grid {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-band div:last-child {
    border-bottom: 0;
  }

  .page-hero {
    padding-top: 52px;
  }

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