:root {
  --cream: #f6f1e6;
  --cream-deep: #ece4d2;
  --forest: #1f3d2c;
  --moss: #4f7a4a;
  --sage: #8fae82;
  --sage-light: #c4d6ba;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: var(--forest);
  min-height: 100vh;
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(143, 174, 130, 0.35), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(79, 122, 74, 0.28), transparent 45%),
    radial-gradient(circle at 70% 12%, rgba(196, 214, 186, 0.45), transparent 38%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 5rem) 1.5rem;
}

.hero__content { position: relative; z-index: 2; max-width: 40rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(79, 122, 74, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 2rem;
}

.wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(3.5rem, 14vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.wordmark::after {
  content: ".";
  color: var(--moss);
}

.tagline {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  color: var(--moss);
  margin: 1.6rem auto 2.6rem;
  line-height: 1.5;
  max-width: 24em;
}

.btn {
  display: inline-block;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  background: var(--forest);
  text-decoration: none;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(31, 61, 44, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover {
  transform: translateY(-3px);
  background: var(--moss);
  box-shadow: 0 16px 30px -12px rgba(79, 122, 74, 0.7);
}
.btn:active { transform: translateY(-1px); }

.copy {
  position: absolute;
  bottom: 1.6rem;
  left: 0;
  right: 0;
  font-size: 0.8rem;
  color: var(--moss);
  opacity: 0.7;
  z-index: 2;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  fill: var(--sage);
  stroke: var(--moss);
  overflow: visible;
  z-index: 1;
  opacity: 0.55;
}
.leaf--1 { width: 150px; top: 6%; left: 5%; transform: rotate(-25deg); }
.leaf--2 { width: 110px; top: 16%; right: 8%; transform: rotate(40deg); opacity: 0.4; }
.leaf--3 { width: 180px; bottom: 14%; left: 7%; transform: rotate(200deg); opacity: 0.35; }
.leaf--4 { width: 130px; bottom: 18%; right: 6%; transform: rotate(150deg); opacity: 0.5; }
.leaf--5 { width: 90px; top: 42%; right: 16%; transform: rotate(-10deg); opacity: 0.3; }

@keyframes drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
.leaf { animation: drift 6s ease-in-out infinite; }
.leaf--2 { animation-delay: -1.5s; animation-duration: 7s; }
.leaf--3 { animation-delay: -3s; animation-duration: 8s; }
.leaf--4 { animation-delay: -2s; }
.leaf--5 { animation-delay: -4s; animation-duration: 5.5s; }

@media (prefers-reduced-motion: reduce) {
  .leaf { animation: none; }
  .btn { transition: background 0.25s ease; }
}

@media (max-width: 600px) {
  .leaf--1 { width: 90px; top: 4%; left: -3%; }
  .leaf--2 { width: 70px; top: 8%; right: -2%; }
  .leaf--3 { width: 110px; bottom: 22%; left: -4%; }
  .leaf--4 { width: 80px; bottom: 24%; right: -3%; }
  .leaf--5 { display: none; }
}
