/* ── Agri-Life Coming Soon ── */
:root {
  --green: #1a5c3a;
  --green-light: #e8f5ee;
  --green-muted: #2d7a50;
  --gold: #e8c547;
  --gold-dark: #c5a22e;
  --earth: #8b6f47;
  --earth-light: #faf6f0;
  --text: #1a1a18;
  --text-muted: #6b6b60;
  --bg: #fdfcf9;
  --white: #fff;
  --border: #e8e5dd;
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'General Sans', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--green);
  letter-spacing: -0.01em;
}
.header-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-dark);
  background: #fdf8e8;
  border: 1px solid #f0e4a8;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── Hero ── */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-muted);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26, 92, 58, 0.10);
}
.hero-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

/* ── Email form ── */
.email-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
}
.email-input {
  flex: 1;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.email-input:focus { border-color: var(--green); }
.email-input::placeholder { color: #aaa8a0; }
.email-btn {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.email-btn:hover { background: var(--green-muted); }
.email-btn:active { transform: scale(0.98); }
.email-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ── Stats ── */
.stats {
  background: var(--green);
  padding: 48px 24px;
}
.stats-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* ── What We Do ── */
.what-section {
  padding: 80px 24px;
}
.what-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  color: var(--green);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.feature-icon { flex-shrink: 0; margin-top: 1px; }
.what-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26, 92, 58, 0.08);
}
.what-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

/* ── Photo Strip ── */
.photo-strip {
  padding: 0 24px 80px;
}
.photo-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.photo-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}
.photo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.photo-caption {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── CTA ── */
.cta-section {
  background: var(--earth-light);
  border-top: 1px solid var(--border);
  padding: 72px 24px;
  text-align: center;
}
.cta-inner { max-width: 520px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--green);
  margin-bottom: 14px;
}
.cta-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.cta-form {
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--green);
  margin-bottom: 10px;
}
.footer-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 13px;
  color: #aaa8a0;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 200;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 32px;
  }
  .hero-content { order: 1; }
  .hero-image { order: 0; }
  .hero-desc { max-width: 100%; }
  .email-form { flex-direction: column; max-width: 100%; }
  .email-btn { width: 100%; }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .what-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .what-image { order: -1; }

  .photo-strip-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .what-section { padding: 56px 20px; }
  .photo-strip { padding: 0 20px 56px; }
  .cta-section { padding: 56px 20px; }
}
