/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1a1a1a;
  border-top: 1px solid rgba(226,207,196,0.10);
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 80px) 0;
  position: relative;
  z-index: 1;
}

/* Four-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(226,207,196,0.08);
}

/* Brand column */
.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  opacity: 0.80;
}
.footer-tagline {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(226,207,196,0.55);
  max-width: 28ch;
}
.footer-ig-handle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(212,169,144,0.70);
  text-decoration: none;
  transition: color 200ms ease;
  width: fit-content;
}
.footer-ig-handle:hover { color: #D4A990; }
.footer-ig-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.75;
}

/* Column headings */
.footer-col-heading {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C4886A;
  margin: 0 0 20px;
}

/* Nav links */
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(226,207,196,0.60);
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-nav a:hover { color: #E2CFC4; }

/* Hours list */
.footer-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(226,207,196,0.60);
}
.footer-hours-note {
  font-size: 11px !important;
  color: rgba(196,136,106,0.65) !important;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* Address */
.footer-address {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.9;
  color: rgba(226,207,196,0.60);
  margin-bottom: 16px;
}
.footer-map-link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C4886A;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,136,106,0.30);
  padding-bottom: 2px;
  display: inline-block;
  margin-bottom: 20px;
  transition: color 200ms ease, border-color 200ms ease;
}
.footer-map-link:hover {
  color: #D4A990;
  border-color: rgba(212,169,144,0.6);
}
.footer-amenities {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(226,207,196,0.40);
  line-height: 1.7;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(226,207,196,0.22);
}
.footer-credit-link {
  color: #C4886A;
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-credit-link:hover { color: #D4A990; }

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}