/* Footer (HeavenBroHotel) */
.hb-footer {
  --hb-black:#0a0a0a; --hb-deep:#080808; --hb-gold:#d4af37; --hb-champagne:#f5efe6; --hb-amber:#ffbf66; --hb-grey:#b9b9b9;
  background: radial-gradient(800px 300px at 90% 0%, rgba(212,175,55,.12), transparent), var(--hb-deep);
  color: var(--hb-champagne);
  border-top: 1px solid rgba(212,175,55,.25);
}
.hb-footer__inner { max-width: 1200px; margin-inline: auto; padding: 2rem 1rem; display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px){ .hb-footer__inner { grid-template-columns: 1.2fr 1fr; } }

/* Brand */
.hb-footer__logo { display: inline-flex; align-items: baseline; gap: .5rem; color: var(--hb-champagne); text-decoration: none; }
.hb-footer__logo:focus { outline: 2px solid var(--hb-gold); outline-offset: 2px; border-radius: 4px; }
.hb-footer__logo-mark { font-weight: 900; color: var(--hb-gold); letter-spacing: .5px; }
.hb-footer__logo-text { font-family: 'Playfair Display', serif; font-weight: 700; }
.hb-footer__tag { margin-top: .5rem; color: var(--hb-grey); max-width: 46ch; }
.hb-footer__contact { margin: 1rem 0 0; padding: 0; list-style: none; display: grid; gap: .25rem; }
.hb-footer__contact a { color: var(--hb-champagne); text-decoration: none; }
.hb-footer__contact a:hover, .hb-footer__contact a:focus { color: #fff; text-decoration: underline; outline: none; }

/* Quick links */
.hb-footer__links {}
.hb-links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .5rem 1rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 640px){ .hb-links { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1000px){ .hb-links { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.hb-links a { color: var(--hb-champagne); text-decoration: none; padding: .3rem 0; display: inline-block; border-radius: .35rem; }
.hb-links a:hover, .hb-links a:focus { color: #fff; outline: 2px solid rgba(212,175,55,.45); outline-offset: 2px; background: rgba(212,175,55,.08); }

/* Bottom */
.hb-footer__bottom { border-top: 1px solid rgba(212,175,55,.18); padding: .9rem 1rem; text-align: center; color: var(--hb-grey); }

/* Cookie banner */
.hb-cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 999; background: rgba(10,10,10,.98); color: var(--hb-champagne); border-top: 1px solid rgba(212,175,55,.25); transform: translateY(0); transition: transform .35s ease, opacity .35s ease; box-shadow: 0 -10px 30px rgba(0,0,0,.35); }
.hb-cookie.is-hidden { opacity: 0; transform: translateY(100%); pointer-events: none; }
.hb-cookie.is-visible { opacity: 1; transform: translateY(0); }
.hb-cookie__inner { max-width: 1100px; margin: 0 auto; padding: 1rem; display: grid; gap: 1rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 780px){ .hb-cookie__inner { grid-template-columns: 1fr auto; padding: 1rem 1.25rem; } }
.hb-cookie__text h2 { margin: 0 0 .25rem 0; font-size: 1.05rem; font-family: 'Playfair Display', serif; color: var(--hb-gold); }
.hb-cookie__text p { margin: 0; color: #ddd; }
.hb-cookie__text a { color: var(--hb-amber); }
.hb-cookie__actions { display: flex; gap: .6rem; align-items: center; justify-content: flex-start; }

/* Buttons in footer context */
.hb-btn { display: inline-flex; align-items: center; justify-content: center; padding: .6rem 1rem; border-radius: .5rem; text-decoration: none; font-weight: 700; line-height: 1; cursor: pointer; }
.hb-btn--gold { color: #1a1a1a; background: linear-gradient(180deg, #f7e7a6, #d4af37 60%, #b58b24); box-shadow: 0 6px 18px rgba(212,175,55,.25); border: 1px solid rgba(212,175,55,.35); }
.hb-btn--gold:hover, .hb-btn--gold:focus { outline: 2px solid rgba(212,175,55,.5); outline-offset: 2px; }
.hb-btn--ghost { color: #eee; background: transparent; border: 1px solid rgba(212,175,55,.35); }
.hb-btn--ghost:hover, .hb-btn--ghost:focus { outline: 2px solid rgba(212,175,55,.5); outline-offset: 2px; }
