/* Premium footer — Golden Teak warm palette */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #1e1810 0%, #15120e 48%, #0f0d0a 100%);
  color: #c4b8a4;
  padding: 0 0 8px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.12);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), rgba(201, 162, 39, 0.35), transparent);
  pointer-events: none;
}

.site-footer a {
  color: #e8dcc8;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer a:hover {
  color: #f5e6b8;
}

/* Trust strip */
.footer-trust-strip {
  background: rgba(201, 162, 39, 0.08);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  padding: 12px 0;
  margin-bottom: 8px;
}

.footer-trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af37;
}

.footer-trust-item {
  opacity: 0.95;
}

.footer-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.45);
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .footer-trust-strip {
    padding: 10px 0;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 40px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 992px) {
  .footer-top {
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 48px 56px;
    padding: 48px 0 40px;
  }
}

.footer-brand .footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.28rem;
  color: #fffdf8;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 12px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.footer-tagline {
  color: #a89a86;
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 280px;
  font-size: 0.88rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5e6b8;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.footer-social-link span {
  line-height: 1;
}

.footer-social-link:hover {
  background: rgba(201, 162, 39, 0.18);
  border-color: rgba(212, 175, 55, 0.45);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
  }
}

.footer-col h4 {
  color: #fff8ee;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  display: inline-block;
  min-width: 100%;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 9px;
}

.site-footer ul li a {
  font-size: 0.86rem;
  color: #b8a896;
}

.site-footer ul li a:hover {
  color: #f0d78c;
}

.footer-note {
  color: #9a8b78;
  font-size: 0.84rem;
  margin: 0 0 14px;
  line-height: 1.55;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 480px) {
  .footer-newsletter-form {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff8ee;
  font-size: 0.88rem;
}

.footer-newsletter-form input::placeholder {
  color: #7a6e5e;
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.footer-newsletter-form button {
  padding: 12px 22px;
  background: linear-gradient(135deg, #c9a227 0%, #a67c00 100%);
  color: #1a150c;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.25);
}

.footer-newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 28px;
  font-size: 0.8rem;
  color: #7d7164;
}

.footer-copy {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  color: #8a7d6e;
  font-size: 0.8rem;
}

.footer-legal a:hover {
  color: #d4af37;
}
