/* Gardixo — compact modern footer */
.site-footer {
  --footer-bg: #041810;
  --footer-panel: rgba(255, 255, 255, 0.04);
  --footer-line: rgba(255, 255, 255, 0.1);
  --footer-lime: #9bc44a;
  --footer-text: #e7f0ea;
  --footer-muted: #9eb3a6;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(64, 145, 108, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(142, 176, 62, 0.1), transparent 50%),
    var(--footer-bg);
  color: var(--footer-text);
  margin-top: auto;
}

.footer-main {
  padding: 2.4rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.75rem 2.5rem;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.55rem;
  line-height: 0;
  text-decoration: none;
}

.footer-logo__mark {
  display: block;
  width: min(188px, 70vw);
  height: auto;
}

.footer-tagline {
  margin: 0 0 0.35rem;
  color: var(--footer-lime);
  font-size: 0.92rem;
  font-weight: 600;
  font-style: normal;
}

.footer-blurb {
  margin: 0 0 1rem;
  color: var(--footer-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--footer-panel);
  color: var(--footer-text);
  border: 1px solid var(--footer-line);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--footer-lime);
  color: var(--footer-bg);
  border-color: var(--footer-lime);
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-newsletter {
  background: var(--footer-panel);
  border: 1px solid var(--footer-line);
  border-radius: 16px;
  padding: 1.25rem 1.3rem;
}

.footer-newsletter h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
}

.footer-newsletter > p {
  margin: 0 0 0.9rem;
  color: var(--footer-muted);
  font-size: 0.88rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 0.9rem;
  border: 1px solid var(--footer-line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--footer-lime);
  box-shadow: 0 0 0 3px rgba(155, 196, 74, 0.2);
}

.footer-newsletter-form button {
  height: 44px;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 10px;
  background: var(--footer-lime);
  color: #041810;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.footer-newsletter-form button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.footer-contact-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  font-size: 0.82rem;
  color: var(--footer-muted);
}

.footer-contact-inline a {
  color: var(--footer-muted);
}

.footer-contact-inline a:hover {
  color: var(--footer-lime);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.25rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--footer-line);
  border-bottom: 1px solid var(--footer-line);
}

.footer-nav a {
  color: var(--footer-text);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-nav a:hover {
  background: rgba(155, 196, 74, 0.14);
  color: var(--footer-lime);
  text-decoration: none;
}

.footer-cats h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--footer-muted);
}

.footer-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--footer-line);
  background: transparent;
  color: var(--footer-muted);
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-chip:hover {
  background: rgba(155, 196, 74, 0.12);
  border-color: rgba(155, 196, 74, 0.45);
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--footer-line);
  padding: 1rem 0 1.15rem;
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--footer-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.15rem;
  max-width: 720px;
  justify-content: flex-end;
}

.footer-legal a {
  color: var(--footer-muted);
  font-size: 0.75rem;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.footer-legal a:hover {
  color: var(--footer-lime);
  text-decoration: none;
}

.site-footer .newsletter-message {
  color: var(--footer-lime);
  font-size: 0.82rem;
  margin-top: 0.45rem;
}

@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-legal {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .footer-main {
    padding: 2rem 1.15rem 1.25rem;
    gap: 1.25rem;
  }

  .footer-newsletter-form {
    flex-direction: column;
  }

  .footer-newsletter-form button {
    width: 100%;
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    gap: 0.2rem;
  }

  .footer-nav a {
    padding: 0.35rem 0.6rem;
    font-size: 0.84rem;
  }
}
