:root {
  --forest: #285943;
  --moss: #b8d5bf;
  --sand: #f4efe6;
  --ink: #1f2a22;
  --accent: #d97b2d;
  --card: #fffdf8cc;
  --shadow: 0 20px 55px rgba(35, 48, 39, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, #dce9cb 0%, transparent 32%),
    radial-gradient(circle at 88% 90%, #f2d7b8 0%, transparent 30%),
    linear-gradient(165deg, #f8f4ec 0%, #deecd8 55%, #cde2cb 100%);
  position: relative;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.bg-shape--one {
  width: 340px;
  height: 340px;
  background: #fff5d7;
  top: -120px;
  right: -70px;
  opacity: 0.65;
}

.bg-shape--two {
  width: 280px;
  height: 280px;
  background: #a3cfa2;
  bottom: -90px;
  left: -75px;
  opacity: 0.45;
}

.hero,
main,
footer {
  width: min(980px, 92vw);
  margin-inline: auto;
}

.hero {
  padding: 4.8rem 0 2.1rem;
  animation: fadeUp 0.7s ease both;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  margin-top: 0;
  color: #173222;
}

h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.lead {
  max-width: 60ch;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta {
  display: inline-block;
  margin-top: 0.8rem;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(130deg, #24563d, #388f60);
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(35, 74, 52, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(35, 74, 52, 0.42);
}

main {
  display: grid;
  gap: 1.2rem;
  padding-bottom: 2.4rem;
}

.card {
  background: var(--card);
  border: 1px solid #ffffffa6;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  padding: 1.4rem;
  backdrop-filter: blur(5px);
  animation: fadeUp 0.8s ease both;
}

.card:nth-of-type(2) {
  animation-delay: 0.08s;
}

.card:nth-of-type(3) {
  animation-delay: 0.15s;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 0.7rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.price-item {
  background: #f9fdf7;
  border: 1px solid #d4e8d4;
  border-radius: 0.9rem;
  padding: 1rem;
}

.price-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.price {
  margin: 0 0 0.3rem;
  color: var(--forest);
  font-weight: 700;
}

p {
  line-height: 1.6;
}

.card a {
  color: #184e36;
  font-weight: 700;
}

.card--contact {
  border: 2px solid #c4dcb7;
}

footer {
  padding: 0.5rem 0 1.8rem;
  font-size: 0.95rem;
  color: #294534;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 3.3rem;
  }

  .card {
    padding: 1.15rem;
  }

  .lead {
    font-size: 1rem;
  }
}
