:root {
  --grass-deep: #0f4d2e;
  --grass-mid: #2d7c4b;
  --sand: #e8dcc2;
  --sun: #f3c96a;
  --ink: #163122;
  --paper: #f7f3ea;
  --white: #ffffff;
  --shadow: rgba(16, 38, 24, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--ink);
  background: linear-gradient(145deg, #edf5e8 0%, #d7ecd5 55%, #c8e3c7 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(243, 201, 106, 0.3), transparent 45%),
    radial-gradient(circle at 92% 14%, rgba(15, 77, 46, 0.2), transparent 40%),
    radial-gradient(circle at 78% 88%, rgba(45, 124, 75, 0.2), transparent 40%);
  z-index: -1;
}

.site-header,
main,
.site-footer {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0 0.8rem;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2e5f44;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: var(--grass-deep);
}

.nav-cta {
  text-decoration: none;
  background: var(--grass-deep);
  color: var(--white);
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 6px 18px var(--shadow);
}

.hero {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 1.25rem;
}

.hero-copy,
.hero-card,
.panel,
.callout {
  background: rgba(247, 243, 234, 0.88);
  border: 1px solid rgba(15, 77, 46, 0.16);
  border-radius: 18px;
  box-shadow: 0 12px 30px var(--shadow);
}

.hero-copy {
  padding: 2rem;
}

.kicker {
  margin: 0;
  color: #235a3a;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.hero-copy h2 {
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 0.9;
  margin-top: 0.5rem;
  color: var(--grass-deep);
}

.hero-copy p {
  line-height: 1.55;
  margin-top: 1rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.75rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(18, 58, 36, 0.2);
}

.btn-primary {
  background: var(--grass-deep);
  color: var(--white);
}

.btn-secondary {
  background: var(--sun);
  color: #1f2a17;
}

.hero-card {
  padding: 1.4rem;
}

.hero-card h3 {
  font-size: 1.7rem;
  color: #1d603c;
}

.hero-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  line-height: 1.6;
}

.split {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.panel {
  padding: 1.35rem;
}

.section-tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #3e704f;
}

.panel h3 {
  margin-top: 0.35rem;
  font-size: 2rem;
  color: #1d603c;
}

.panel p {
  line-height: 1.55;
}

.tier-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(28, 83, 52, 0.2);
}

.tier-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.72rem 0.8rem;
  background: rgba(255, 255, 255, 0.65);
}

.tier-list li:nth-child(2n) {
  background: rgba(232, 220, 194, 0.55);
}

.callout {
  margin-top: 1.2rem;
  padding: 1.4rem;
  text-align: center;
}

.callout h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #1b5a38;
}

.callout p {
  margin: 0.55rem auto 0;
  max-width: 65ch;
  line-height: 1.55;
}

.site-footer {
  text-align: center;
  padding: 1.4rem 0 1.8rem;
  font-size: 0.92rem;
  color: #284a36;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 680ms ease forwards;
}

.delay-1 {
  animation-delay: 140ms;
}

.delay-2 {
  animation-delay: 280ms;
}

.delay-3 {
  animation-delay: 420ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card,
  .panel,
  .callout {
    padding: 1.1rem;
  }
}

@media (max-width: 560px) {
  .btn,
  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }
}
