/* ==========================================================
   Footer — LadangGo
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=DM+Sans:wght@400;500;600&display=swap');

/* ── Footer wrapper ───────────────────────────────────────── */
.site-footer {
  background-color: #0d3d1a;
  background-image:
    radial-gradient(ellipse 70% 80% at 50% 120%, #1a6b2f 0%, transparent 65%);
  border-top: 1px solid rgba(45, 158, 79, 0.25);
  padding: 40px 24px 32px;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
}

/* ── Inner container ──────────────────────────────────────── */
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* ── Brand row ────────────────────────────────────────────── */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-logo {
  font-size: 20px;
  line-height: 1;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #7deda2;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.footer-name:hover {
  color: #a7f3c0;
}

/* ── Tagline ──────────────────────────────────────────────── */
.footer-tagline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(125, 237, 162, 0.5);
  margin: 0;
}

/* ── Divider ──────────────────────────────────────────────── */
.footer-divider {
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #2d9e4f, transparent);
  margin: 12px 0 8px;
}

/* ── Copyright ────────────────────────────────────────────── */
.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}