
:root {
  --dark: #0e0e0e;
  --muted: #555;
  --bg-soft: #f6f3ee;
  --primary: #4a2e26;
}

* {
  box-sizing: border-box;
}



/* LAST CTA */
.last-cta {
  padding: 5rem 2rem;
  text-align: center;
}

.cta-inner {
  margin: auto;
}

.last-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.last-cta p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2.2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid #111;
  color: #111;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
}

/* FOOTER */
.site-footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  margin: auto;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
}

.footer-brand img {
  height: 42px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #000;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.6rem;
}

.footer-col a:hover {
  color: #000;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .last-cta h2 {
    font-size: 2rem;
  }
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: all .25s ease;
}

.social-links a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-links a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}
