/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --cream:      #F5F0E8;
  --surface:    #FFFFFF;
  --primary:    #2D6A35;  /* deep green — primary actions */
  --secondary:  #5BAE3C;  /* bright green — secondary actions */
  --laurel:     #7DC4E8;  /* sky blue — Ask Laurel ONLY */
  --laurel-wash:#EAF5FB;  /* soft sky-blue section background */
  --soil:       #6B3F1F;
  --gold:       #C4913B;
  --text:       #2A2620;
  --muted:      #6B655C;
  --border:     #E3DACB;
}

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn--primary   { background: var(--primary);   color: #fff; }
.btn--secondary { background: var(--secondary);  color: #fff; }
.btn--outline   { background: transparent; color: var(--text); border: 1.5px solid var(--border); }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
.nav__logo-mark { width: 40px; height: 40px; border-radius: 10px; }
.nav__ctas { display: flex; gap: 0.75rem; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
}

.hero__headline {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero__plants { font-size: 2rem; letter-spacing: 0.35rem; opacity: 0.7; }

/* ─── Feature sections ───────────────────────────────────── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.feature__text p {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
}

.feature__screenshot { display: flex; justify-content: center; }

.feature__screenshot img {
  width: 100%;
  max-width: 260px;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(43, 38, 32, 0.18);
}

/* ─── Ask Laurel (sky-blue elevated) ─────────────────────── */
.feature--laurel {
  max-width: none;
  background: var(--laurel-wash);
  border-top: 3px solid var(--laurel);
  border-bottom: 3px solid var(--laurel);
  /* Full-bleed band: re-pad so content stays aligned with the
     1100px-centered cream sections above/below. */
  padding-left: max(4rem, calc((100vw - 1100px) / 2));
  padding-right: max(4rem, calc((100vw - 1100px) / 2));
}

.feature__badge {
  display: inline-block;
  background: var(--laurel);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  text-align: center;
  padding: 5rem 2rem 3rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.footer__headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.footer__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__meta { margin-bottom: 0.75rem; }
.footer__link { color: var(--primary); font-weight: 600; }
.footer__copy { color: var(--muted); font-size: 0.85rem; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hide nav download buttons on mobile — hero carries them */
  .nav__ctas { display: none; }

  /* Stack feature sections vertically, screenshot above text */
  .feature {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem;
    gap: 2rem;
    text-align: center;
  }

  .feature--laurel { padding-left: 1.5rem; padding-right: 1.5rem; }

  .feature__text p { max-width: 100%; margin: 0 auto; }
  .feature__text { display: flex; flex-direction: column; align-items: center; }

  /* Text-first rows put screenshot above text on mobile;
     screenshot-first rows already have it first in the DOM. */
  .feature--left .feature__screenshot { order: -1; }
}
