/* ==========================================
   Center for Clarity and Connection LLC
   Footer Styles — Refined Edition
   ========================================== */

.site-footer {
  background-color: var(--green-400);
  color: var(--cream-100);
  margin-top: 0;
}

.footer-top {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 96px) clamp(24px, 5vw, 60px) 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand */
.footer-brand .footer-business-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--cream-100);
  margin-bottom: 10px;
}

.footer-brand .footer-tagline {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-100);
  margin-bottom: 24px;
}

.footer-brand p.footer-desc {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(229, 215, 196, 0.65);
  max-width: 260px;
}

/* Nav columns */
.footer-col-label {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-100);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(229, 215, 196, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--cream-100);
}

.footer-book-link {
  color: var(--cream-300) !important;
  font-weight: 400 !important;
}

.footer-book-link:hover {
  color: #fff !important;
}

/* Contact */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(229, 215, 196, 0.8);
  line-height: 1.6;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--cream-100);
}

.footer-contact address {
  font-style: normal;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(229, 215, 196, 0.8);
  line-height: 1.7;
}

.footer-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

/* Bottom bar */
.footer-bottom {
  padding: 20px clamp(24px, 5vw, 60px);
}

.footer-bottom-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(214, 230, 176, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  color: rgba(214, 230, 176, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(214, 230, 176, 0.9);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
