:root {
  --dark-green: #11251b;
  --deep-green: #1d3629;
  --forest-green: #2f4d3f;
  --brown: #5b3d2a;
  --earth: #a87a4a;
  --beige: #efe2c7;
  --sand: #d9c39a;
  --ivory: #f6f0e4;
  --shadow: rgba(10, 16, 13, 0.38);
  --line: rgba(239, 226, 199, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--dark-green);
  color: var(--ivory);
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.7;
}

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

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

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  height: 78vh;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 14, 0.35);
}

.hero-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 1;
  color: var(--ivory);
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: none;
  text-align: center;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.cats {
  display: block;
}

.cat {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
}

.cat:last-child {
  border-bottom: none;
}

.cat-media img {
  height: 540px;
  object-fit: cover;
  background: var(--deep-green);
  border: 1px solid rgba(239, 226, 199, 0.12);
}

.cat-copy {
  max-width: 36rem;
}

.cat--tiger .cat-copy,
.cat--jaguar .cat-copy {
  justify-self: end;
}

.cat h2 {
  margin: 0 0 1rem;
  color: var(--beige);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.intro,
.facts {
  margin: 0;
  color: var(--ivory);
  font-size: 1.08rem;
  line-height: 1.8;
}

.intro {
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: var(--beige);
}

.facts {
  color: rgba(246, 240, 228, 0.9);
}

.wild-facts {
  margin-top: 1rem;
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
  border-top: 1px solid var(--line);
  background: rgba(20, 37, 29, 0.8);
}

.facts-intro {
  margin-bottom: 2rem;
}

.section-label {
  margin: 0 0 0.5rem;
  color: var(--sand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.facts-intro h2 {
  margin: 0;
  color: var(--beige);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

.fact-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.fact-item img {
  height: 110px;
  object-fit: cover;
  border: 1px solid rgba(239, 226, 199, 0.12);
}

.fact-item p {
  margin: 0;
  color: var(--ivory);
  font-size: 1rem;
  line-height: 1.7;
}

.fact-item strong {
  color: var(--beige);
}

@media (max-width: 860px) {
  .cat {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cat-media,
  .cat-copy {
    max-width: 100%;
  }

  .cat--tiger .cat-copy,
  .cat--jaguar .cat-copy {
    justify-self: start;
  }

  .cat-media img {
    height: 420px;
  }

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

@media (max-width: 540px) {
  main {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    min-height: 62vh;
  }

  .hero-image {
    height: 62vh;
  }

  .hero-title {
    letter-spacing: 0.04em;
    width: 100%;
    padding: 0 1rem;
  }

  .cat {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .cat-media img {
    height: 340px;
  }

  .fact-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .fact-item img {
    height: 200px;
  }

  .intro,
  .facts {
    font-size: 1rem;
  }
}
