:root {
  --moss: #2f5d50;
  --sage: #8fbc8f;
  --cream: #f4f7f0;
  --soil: #1c2e28;
  --petal: #e8a87c;
  --leaf: #2f6b55;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--cream);
  color: var(--soil);
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 10% 0%, rgba(143, 188, 143, 0.35), transparent 40%),
    radial-gradient(ellipse at 90% 20%, rgba(232, 168, 124, 0.25), transparent 35%),
    linear-gradient(180deg, #eef5ea, #f7f4ec);
}

.blooms {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  filter: blur(2px);
  animation: morph 12s ease-in-out infinite;
}

.b1 {
  width: 280px;
  height: 300px;
  background: rgba(61, 139, 110, 0.28);
  top: 10%;
  right: -40px;
}

.b2 {
  width: 220px;
  height: 240px;
  background: rgba(232, 168, 124, 0.3);
  bottom: 15%;
  left: -30px;
  animation-delay: -4s;
  border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%;
}

.b3 {
  width: 160px;
  height: 180px;
  background: rgba(47, 93, 80, 0.2);
  top: 45%;
  left: 40%;
  animation-delay: -7s;
}

.nav,
.hero,
.grove {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--moss);
}

.nav a {
  color: var(--moss);
  text-decoration: none;
}

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  max-width: 720px;
  animation: sprout 1s ease both;
}

.brand {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(3.8rem, 14vw, 7.5rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--moss);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  line-height: 1.2;
  max-width: 12ch;
  margin-bottom: 0.9rem;
}

.sub {
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34ch;
  color: #4a5f55;
  margin-bottom: 1.75rem;
}

.cta {
  display: inline-block;
  text-decoration: none;
  color: var(--cream);
  font-weight: 700;
  padding: 1rem 1.5rem;
  background: var(--leaf);
  border-radius: 999px 999px 999px 40px;
  box-shadow: 0 10px 30px rgba(47, 93, 80, 0.25);
  transition: transform 0.25s ease, border-radius 0.35s ease;
}

.cta:hover {
  transform: translateY(-3px) rotate(-1deg);
  border-radius: 40px 999px 999px 999px;
}

.grove {
  display: grid;
  gap: 1.25rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 4rem;
  max-width: 800px;
}

.leaf {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(47, 93, 80, 0.15);
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  backdrop-filter: blur(4px);
  animation: sprout 0.8s ease both;
}

.leaf:nth-child(1) { animation-delay: 0.15s; }
.leaf:nth-child(2) {
  animation-delay: 0.25s;
  border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
  background: rgba(143, 188, 143, 0.25);
}

.leaf h2 {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--moss);
}

.leaf p {
  color: #4a5f55;
  line-height: 1.5;
}

@keyframes morph {
  0%, 100% {
    border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
    transform: translate(12px, -16px) rotate(8deg);
  }
}

@keyframes sprout {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
