:root {
  --ink: #17231c;
  --muted: #5c675f;
  --paper: #fbfaf6;
  --leaf: #234034;
  --deep: #10251e;
  --leaf-2: #5f7d3f;
  --gold: #c5923d;
  --clay: #b85f42;
  --cream: #f2eadb;
  --line: rgba(23, 35, 28, 0.14);
  --shadow: 0 22px 60px rgba(20, 32, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  align-items: center;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand img {
  height: 54px;
  width: auto;
}

nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  background: var(--leaf);
  border-radius: 6px;
  color: #fff;
  padding: 11px 15px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 460px);
  min-height: min(760px, calc(100vh - 83px));
  padding: clamp(24px, 4.6vw, 56px);
  position: relative;
  gap: clamp(22px, 4vw, 44px);
  overflow: hidden;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(16, 37, 30, 0.94) 0%, rgba(16, 37, 30, 0.78) 42%, rgba(16, 37, 30, 0.2) 100%),
    linear-gradient(0deg, rgba(16, 37, 30, 0.72), rgba(16, 37, 30, 0.05));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-media {
  inset: 0;
  opacity: 1;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  width: 100%;
}

.hero-content,
.lead-card {
  position: relative;
  z-index: 2;
}

.hero-content {
  align-self: center;
  max-width: 760px;
  color: #fff;
}

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

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

h1 {
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 0.96;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  max-width: 620px;
}

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

.button {
  border: 1px solid var(--leaf);
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 800;
}

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

.button.ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 12px;
}

.button.full {
  width: 100%;
}

.lead-card {
  align-self: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 30px);
}

.lead-card h2 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
  margin-bottom: 18px;
}

form {
  display: grid;
  gap: 11px;
}

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

#leadForm label:first-child,
#leadForm .check,
#leadForm button,
#leadForm .form-note {
  grid-column: 1 / -1;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 6px;
}

input,
select {
  background: #f7f5ee;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 11px 12px;
  width: 100%;
}

.check {
  align-items: start;
  display: grid;
  grid-template-columns: 18px 1fr;
  line-height: 1.35;
}

.check input {
  min-height: auto;
  margin: 2px 0 0;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 0;
}

.success-modal[hidden] {
  display: none;
}

.success-modal {
  align-items: center;
  background: rgba(16, 37, 30, 0.74);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 100;
}

.success-modal__card {
  background: #fffdf8;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  max-width: 420px;
  padding: 30px;
  position: relative;
  text-align: center;
  width: 100%;
}

.success-modal__close {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 36px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 12px;
  top: 10px;
  width: 36px;
}

.success-modal__icon {
  align-items: center;
  background: var(--leaf);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 28px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  margin-bottom: 16px;
  width: 58px;
}

.success-modal h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.success-modal p {
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 20px;
}

.trust-bar {
  background: var(--leaf);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.trust-bar div {
  background: rgba(255, 255, 255, 0.06);
  padding: 20px clamp(18px, 4vw, 56px);
}

.trust-bar.compact strong {
  font-size: 16px;
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-top: 6px;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 70px);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
  max-width: 760px;
}

.section-heading p:not(.eyebrow),
.split p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.species-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

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

.species-grid div {
  padding: 18px;
}

.species-grid p {
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 0;
}

.showcase {
  background: #eef0e5;
}

.spotlight {
  align-items: center;
  background: var(--deep);
  color: #fff;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 70px);
}

.compact-spotlight {
  background: #eef0e5;
  color: var(--ink);
  gap: clamp(20px, 3vw, 34px);
  grid-template-columns: minmax(250px, 0.48fr) minmax(0, 1.52fr);
  padding-bottom: clamp(30px, 4vw, 48px);
  padding-top: clamp(30px, 4vw, 48px);
}

.compact-spotlight .spotlight-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}

.compact-spotlight .spotlight-copy h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

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

.compact-spotlight .spotlight-card,
.compact-spotlight .spotlight-card.tall,
.compact-spotlight .spotlight-card.wide {
  grid-column: auto;
  grid-row: auto;
  min-height: 220px;
}

.spotlight-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 28px;
}

.spotlight-copy .button {
  background: var(--gold);
  border-color: var(--gold);
  color: #1d170d;
}

.spotlight-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spotlight-card {
  background: #071511;
  border-radius: 8px;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}

.spotlight-card.tall {
  grid-row: span 2;
  min-height: 454px;
}

.spotlight-card.wide {
  grid-column: span 2;
}

.spotlight-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.spotlight-card::after {
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.72));
  content: "";
  inset: 0;
  position: absolute;
}

.spotlight-card div {
  bottom: 0;
  padding: 18px;
  position: absolute;
  z-index: 1;
}

.spotlight-card span {
  color: #f0c271;
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.spotlight-card h3 {
  color: #fff;
  margin-bottom: 0;
}

.bird-grid {
  display: grid;
  gap: 16px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bird-card {
  background: var(--ink);
  border-radius: 8px;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.bird-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 616px;
}

.bird-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.bird-card::after {
  background: linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.76) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.bird-card div {
  bottom: 0;
  color: #fff;
  padding: 20px;
  position: absolute;
  z-index: 1;
}

.bird-card span {
  color: #f0c271;
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.bird-card h3 {
  margin-bottom: 0;
}

.split {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.split > * {
  min-width: 0;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.proof-list span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--leaf);
  font-weight: 800;
  padding: 11px 13px;
}

.quote-panel {
  background: var(--gold);
  border-radius: 8px;
  color: #1b1710;
  min-height: 360px;
  padding: 32px;
  display: grid;
  align-content: end;
}

.quote-panel p {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}

.quote-panel span {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.final-cta {
  background: var(--leaf);
  color: #fff;
  padding: clamp(48px, 8vw, 88px) 18px;
  text-align: center;
}

.final-cta h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 850px;
}

.final-cta .eyebrow {
  color: #f0c271;
}

.final-cta .button {
  background: #fff;
  color: var(--leaf);
  margin-top: 10px;
}

footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
}

footer p {
  color: var(--muted);
  margin: 7px 0 0;
}

.social {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .spotlight {
    grid-template-columns: 1fr;
  }

  .lead-card {
    align-self: stretch;
  }

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

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

  .spotlight-card.tall,
  .spotlight-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
    position: static;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .brand img {
    height: 46px;
  }

  .hero {
    min-height: auto;
    padding: 34px 18px;
  }

  .lead-card {
    order: -1;
  }

  #leadForm {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background: rgba(16, 37, 30, 0.72);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .trust-bar,
  .species-grid,
  .bird-grid,
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .bird-card,
  .bird-card.featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .compact-spotlight .spotlight-card,
  .compact-spotlight .spotlight-card.tall,
  .compact-spotlight .spotlight-card.wide {
    min-height: 250px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
