:root {
  --ink: #191714;
  --cream: #fff8ea;
  --sand: #e4c985;
  --gold: #d99b2b;
  --leaf: #246342;
  --earth: #6c4425;
  --white: #ffffff;
  --shadow: 0 24px 90px rgba(16, 11, 7, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #120f0b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    radial-gradient(circle at 68% 42%, rgba(255, 205, 117, 0.1), rgba(18, 15, 11, 0.1) 28%),
    linear-gradient(90deg, rgba(18, 15, 11, 0.82), rgba(18, 15, 11, 0.44) 52%, rgba(18, 15, 11, 0.18)),
    linear-gradient(0deg, rgba(18, 15, 11, 0.72), rgba(18, 15, 11, 0.08) 48%);
}

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
}

.domain {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(18, 15, 11, 0.22);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  margin: 0 auto;
  padding: 138px 0 86px;
}

.eyebrow,
.wildlife-strip span {
  margin: 0 0 14px;
  color: #ffd783;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 1;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.notify-form {
  width: min(650px, 100%);
  margin-top: 38px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.notify-form label {
  display: block;
  padding: 7px 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
}

button {
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  padding: 14px 22px;
  color: #1b1208;
  background: var(--gold);
  cursor: pointer;
  font-weight: 850;
}

button:hover,
button:focus-visible {
  background: #f0b145;
  outline: none;
}

input:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(217, 155, 43, 0.32);
}

.form-status {
  min-height: 24px;
  margin: 12px 8px 0;
  color: #fff0be;
  font-weight: 750;
}

.wildlife-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.wildlife-strip article {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #20160f;
}

.wildlife-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.wildlife-strip article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 9, 7, 0.86), rgba(12, 9, 7, 0.02) 62%);
  content: "";
}

.wildlife-strip article:hover img {
  transform: scale(1.035);
}

.wildlife-strip div {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 42px);
}

.wildlife-strip h2 {
  max-width: 420px;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.76);
  background: #120f0b;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffd783;
  font-weight: 750;
}

@media (max-width: 860px) {
  .hero {
    min-height: 720px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content {
    padding-top: 180px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 5.5rem);
  }

  .wildlife-strip {
    grid-template-columns: 1fr;
  }

  .wildlife-strip article {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 760px;
  }

  .domain {
    max-width: 100%;
  }

  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  button {
    width: 100%;
  }
}
