/*==========================================================================
Gardens by Lotels — Site Footer
Namespaced under .site-footer. Compact by design: 4 → 2 → 2 columns,
tight vertical rhythm so it never dominates the page on small screens.
==========================================================================*/
.site-footer {
  --sf-bg: #0E1317;
  --sf-bg-2: #121A20;
  --sf-line: rgba(255, 255, 255, 0.08);
  --sf-text: #C9CDD1;
  --sf-muted: #8A9096;
  --sf-gold: #B89146;
  --sf-gold-2: #D4B06A;
  background: var(--sf-bg);
  color: var(--sf-text);
  font-size: 14.5px;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}
.site-footer a { color: inherit; transition: color .25s ease; }
.site-footer a:hover { color: var(--sf-gold-2); }

/* ---------- CTA band ---------- */
.site-footer-cta {
  background:
    radial-gradient(900px 240px at 8% 0%, rgba(184,145,70,0.20), transparent 62%),
    linear-gradient(90deg, #171F26 0%, #0E1317 100%);
  border-bottom: 1px solid var(--sf-line);
}
.site-footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(22px, 3vw, 40px) 0;
}
.site-footer-eyebrow {
  display: inline-block;
  color: var(--sf-gold);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.site-footer-cta-text h3 {
  color: #fff;
  font-size: clamp(1.05rem, 0.85rem + 0.9vw, 1.6rem);
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
  max-width: 560px;
}
.site-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}
.site-footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.site-footer-btn i { font-size: 13px; }
.site-footer-btn--solid { background: var(--sf-gold); color: #fff; }
.site-footer-btn--solid:hover { background: var(--sf-gold-2); color: #0E1317; transform: translateY(-2px); }
.site-footer-btn--ghost { border: 1px solid rgba(255,255,255,0.22); color: #fff; }
.site-footer-btn--ghost:hover { border-color: var(--sf-gold); color: var(--sf-gold-2); transform: translateY(-2px); }

/* ---------- Main grid ---------- */
.site-footer-main { padding: clamp(30px, 4vw, 60px) 0 clamp(24px, 3vw, 44px); }
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: clamp(22px, 3vw, 48px);
}
.site-footer-col--brand p {
  color: var(--sf-text);
  margin: 12px 0 16px;
  max-width: 340px;
  font-size: 14px;
}
.site-footer-logo { display: inline-block; }
.site-footer-logo img { max-width: 132px; height: auto; }

.site-footer-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 14px;
  position: relative;
  padding-bottom: 9px;
}
.site-footer-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--sf-gold), transparent);
}

.site-footer-links, .site-footer-info, .site-footer-contact, .site-footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer-links li + li { margin-top: 7px; }
.site-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sf-text);
}
.site-footer-links a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sf-gold);
  opacity: .55;
  flex-shrink: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.site-footer-links a:hover { color: #fff; }
.site-footer-links a:hover::before { opacity: 1; transform: scale(1.35); }

.site-footer-info li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer-info li + li { margin-top: 10px; }
.site-footer-info li i {
  width: 30px; height: 30px;
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(184,145,70,0.12);
  color: var(--sf-gold);
  font-size: 13px;
  flex-shrink: 0;
}
.site-footer-info span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--sf-muted); line-height: 1.2; }
.site-footer-info strong { color: #fff; font-weight: 600; font-size: 14px; }

.site-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.site-footer-contact li + li { margin-top: 10px; }
.site-footer-contact li i {
  color: var(--sf-gold);
  font-size: 14px;
  width: 16px;
  text-align: center;
  margin-top: 5px;
  flex-shrink: 0;
}
.site-footer-contact a { color: var(--sf-text); }
.site-footer-contact a:hover { color: #fff; }

.site-footer-social { display: flex; gap: 9px; flex-wrap: wrap; }
.site-footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--sf-text);
  font-size: 14px;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.site-footer-social a:hover {
  background: var(--sf-gold);
  border-color: var(--sf-gold);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Bottom bar ---------- */
.site-footer-bottom {
  background: var(--sf-bg-2);
  border-top: 1px solid var(--sf-line);
}
.site-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  flex-wrap: wrap;
  padding: 14px 0;
  font-size: 13px;
}
.site-footer-bottom-inner p { margin: 0; color: var(--sf-muted); }
.site-footer-bottom-inner p a { color: var(--sf-gold); font-weight: 600; }
.site-footer-bottom-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}
.site-footer-bottom-links a { color: var(--sf-muted); }
.site-footer-bottom-links a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .site-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 26px; }
}

/* Tablet + phone: brand spans the top, the three short columns sit in a row */
@media (max-width: 991.98px) {
  .site-footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 22px;
  }
  .site-footer-col--brand { grid-column: 1 / -1; }
  .site-footer-col--brand p { max-width: 520px; }
  .site-footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* Phone: two compact columns — keeps the footer roughly half as tall as a full stack */
@media (max-width: 575.98px) {
  .site-footer { font-size: 13.5px; line-height: 1.55; }
  .site-footer-main { padding: 22px 0 16px; }
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
  }
  .site-footer-col--brand { grid-column: 1 / -1; }
  .site-footer-col--brand p {
    margin: 8px 0 12px;
    font-size: 13.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /* Contact needs the full width for the address */
  .site-footer-col:last-child { grid-column: 1 / -1; }
  .site-footer-logo img { max-width: 104px; }
  .site-footer-social { gap: 8px; }
  .site-footer-social a { width: 34px; height: 34px; font-size: 13px; }

  .site-footer-title { font-size: 12.5px; margin-bottom: 11px; padding-bottom: 7px; }
  .site-footer-links li + li { margin-top: 5px; }
  .site-footer-info li + li { margin-top: 7px; }
  .site-footer-info li i { width: 26px; height: 26px; border-radius: 6px; font-size: 11px; }
  .site-footer-info span { font-size: 10px; }
  .site-footer-info strong { font-size: 13px; }
  .site-footer-contact li + li { margin-top: 7px; }

  /* CTA band: the header already carries a Book button, so keep this minimal */
  .site-footer-cta-inner { padding: 16px 0; gap: 12px; }
  .site-footer-eyebrow { display: none; }
  .site-footer-cta-text h3 { font-size: 1rem; line-height: 1.35; }
  .site-footer-cta-actions { width: 100%; }
  .site-footer-btn { flex: 1 1 0; min-height: 44px; padding: 0 12px; font-size: 13.5px; }

  .site-footer-bottom-inner { flex-direction: column; align-items: flex-start; padding: 11px 0; gap: 5px; font-size: 12.5px; }
  .site-footer-bottom-links { gap: 3px 14px; }
}

/*==========================================================================
Luxe logo is a JPEG on a white ground — frame it so it reads as a badge
rather than a bare white rectangle on the dark footer.
==========================================================================*/
.site-footer-logo img {
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}
@media (max-width: 575.98px) {
  .site-footer-logo img { padding: 6px 10px; }
}
