/* Harvest v2 — Garden. Calm. Colorful. */

:root {
  --cream: #F6F0E4;
  --cream-2: #EFE7D5;
  --ink: #1A1814;
  --ink-2: #4A4438;
  --ink-3: #8B8474;

  --terra: #D9583C;
  --marigold: #E8A93C;
  --sage: #6B9362;
  --plum: #6E3F66;
  --sky: #6FA3C7;
  --rose: #E8B4A6;

  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter Tight", -apple-system, sans-serif;
}

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

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* ============ NAV ============ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 56px;
  position: relative;
  z-index: 10;
}
.wordmark {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wordmark .seed {
  width: 14px; height: 14px;
  background: var(--terra);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-30deg);
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  font-size: 14px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--terra); }

/* ============ HERO ============ */
.hero {
  min-height: 88vh;
  padding: 80px 56px 120px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 400;
  max-width: 16ch;
  margin: 0 auto;
  text-wrap: balance;
}
.hero h1 .grow {
  font-style: italic;
  display: inline-block;
  background: linear-gradient(180deg, var(--terra) 0%, var(--marigold) 50%, var(--sage) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 0.05em;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--terra);
}

.hero p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-2);
  max-width: 38ch;
  margin: 36px auto 0;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

.hero-cta {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-size: 17px;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.btn-primary:hover {
  background: var(--terra);
  transform: translateY(-1px);
}
.btn-primary .arrow {
  transition: transform .2s;
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
}
.btn-secondary {
  font-size: 17px;
  padding: 18px 32px;
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--ink-3);
}
.btn-secondary:hover {
  text-decoration-color: var(--terra);
  color: var(--terra);
}

/* ============ FLOATING SHAPES IN HERO ============ */
.hero-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.95;
  animation: float 14s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
  50% { transform: translate(var(--dx, 12px), var(--dy, -16px)) rotate(calc(var(--rot, 0deg) + 4deg)); }
}

/* ============ GARDEN SECTION ============ */
.garden-section {
  padding: 120px 56px 140px;
  background: var(--cream);
  text-align: center;
}
.section-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before, .section-label::after {
  content: "";
  width: 24px; height: 1px;
  background: var(--ink-3);
}
.section-h {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: 18ch;
  margin: 0 auto 28px;
  text-wrap: balance;
}
.section-h em { font-style: italic; color: var(--terra); }
.section-sub {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--ink-2);
  max-width: 40ch;
  margin: 0 auto 64px;
  line-height: 1.4;
}

/* ============ THE GARDEN ============ */
.garden {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--cream-2);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.garden-soil {
  position: absolute;
  inset: 0;
}
.bloom {
  position: absolute;
  border-radius: 50%;
  transform-origin: bottom center;
  transition: all 1.2s cubic-bezier(.2,.8,.2,1);
}
.bloom .stem {
  position: absolute;
  bottom: -100%;
  left: 50%;
  width: 2px;
  background: var(--sage);
  transform: translateX(-50%);
  transform-origin: bottom;
}
.bloom-label {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s;
}
.bloom:hover .bloom-label,
.bloom.hovered .bloom-label { opacity: 1; }

.garden-legend {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  background: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
}
.garden-legend .swatch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.garden-legend .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.garden-status {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.garden-status .live-dot {
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============ CONVERSATIONS ============ */
.conv-section {
  padding: 120px 56px;
  background: var(--cream);
}
.conv-grid {
  max-width: 1100px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.conv-card {
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.conv-card.c1 { background: #F0DCC4; }  /* warm wheat */
.conv-card.c2 { background: #C8DBCE; }  /* sage milk */
.conv-card.c3 { background: #E8C9C0; }  /* dusty rose */

.conv-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.conv-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.conv-card.c1 .conv-tag .dot { background: var(--terra); }
.conv-card.c2 .conv-tag .dot { background: var(--sage); }
.conv-card.c3 .conv-tag .dot { background: var(--plum); }

.conv-msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.conv-msg .who {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.conv-msg .text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.conv-msg.user .text {
  font-style: normal;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-2);
}

.conv-outcome {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(26,24,20,.15);
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.conv-outcome strong {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============ FINAL CTA ============ */
.final {
  padding: 140px 56px 160px;
  text-align: center;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.final h2 {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 400;
  max-width: 14ch;
  margin: 0 auto;
  text-wrap: balance;
}
.final h2 em {
  font-style: italic;
  color: var(--marigold);
}
.final p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(246,240,228,.7);
  max-width: 36ch;
  margin: 32px auto 0;
  line-height: 1.4;
}
.final .btn-primary {
  margin-top: 56px;
  background: var(--marigold);
  color: var(--ink);
  font-size: 18px;
  padding: 20px 36px;
}
.final .btn-primary:hover {
  background: var(--cream);
}
.final .meta {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(246,240,228,.5);
  letter-spacing: 0.02em;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
  animation: float 16s ease-in-out infinite;
}

/* ============ FOOTER ============ */
.footer {
  padding: 48px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
  background: var(--cream);
  flex-wrap: wrap;
  gap: 16px;
}
.footer .links { display: flex; gap: 24px; }
.footer .links a:hover { color: var(--terra); }

/* responsive */
@media (max-width: 860px) {
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero { padding: 40px 24px 80px; }
  .garden-section, .conv-section, .final { padding: 80px 24px; }
  .conv-grid { grid-template-columns: 1fr; }
  .footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .hero-shape { transform: scale(0.6) !important; }
}
