/* Luxe footer shared across marketing pages */
.site-footer-luxe {
  position: relative;
  background: linear-gradient(180deg, #101010 0%, #090909 100%);
  color: #f4f1eb;
  border-top: 1px solid rgba(184, 134, 11, 0.35);
  margin-top: 0;
  overflow: hidden;
}

.site-footer-luxe::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 134, 11, 0.16), transparent 36%),
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.site-footer-luxe .footer-luxe-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 22px;
}

.site-footer-luxe .footer-luxe-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.site-footer-luxe .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 12px;
}

.site-footer-luxe .footer-brand span {
  font-family: var(--serif, "Cormorant Garamond", Georgia, serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.site-footer-luxe .footer-kicker {
  color: #d8d2c4;
  font-size: 14px;
  line-height: 1.7;
  max-width: 330px;
}

.site-footer-luxe .footer-mini-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  background: linear-gradient(180deg, #f2e7d1 0%, #dfc99e 100%);
  border-radius: 11px;
  border: 1px solid rgba(184, 134, 11, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer-luxe .footer-mini-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.28);
}

.site-footer-luxe .footer-col h4 {
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #ab9b78;
  margin-bottom: 12px;
}

.site-footer-luxe .footer-col a {
  display: block;
  color: #efeee9;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.65;
  padding: 2px 0;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.site-footer-luxe .footer-col a:hover {
  opacity: 1;
  color: #ffffff;
  transform: translateX(2px);
}

.site-footer-luxe .footer-luxe-bottom {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer-luxe .footer-copy {
  color: #bfb9ab;
  font-size: 12px;
}

.site-footer-luxe .footer-top-btn {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #f9f7f2;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.site-footer-luxe .footer-top-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .site-footer-luxe .footer-luxe-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-footer-luxe .footer-luxe-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  .site-footer-luxe .footer-luxe-inner {
    padding: 40px 20px 20px;
  }

  .site-footer-luxe .footer-luxe-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 400px) {
  .site-footer-luxe .footer-luxe-top {
    grid-template-columns: 1fr;
  }
}
