:root{
  --hc-dark:#1E1E1E;
  --hc-light:#fff;
  --hc-accent:#D4AF37;
  --hc-border:#e5e5e5;
}
.hc-footer{
  background:var(--hc-dark);
  color:var(--hc-light);
  font-family:'Inter',sans-serif;
  padding:3rem 1rem 1rem;
}
.hc-footer-container{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:2rem;
}
.hc-footer h3{font-size:1.1rem;margin-bottom:.8rem;color:var(--hc-accent)}
.hc-footer ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.4rem}
.hc-footer a{color:var(--hc-light);text-decoration:none;font-size:.94rem}
.hc-footer a:hover{color:var(--hc-accent)}

.hc-foot-brand img{height:60px;width:auto;margin-bottom:.6rem}
.hc-contact a{color:var(--hc-light);font-size:.9rem}
.hc-contact a:hover{color:var(--hc-accent)}

.hc-newsletter form{
  display:flex;gap:.4rem;margin-top:.5rem
}
.hc-newsletter input{
  flex:1;padding:.45rem .6rem;border:none;border-radius:4px 0 0 4px;
}
.hc-newsletter button{
  background:var(--hc-accent);border:none;color:#fff;
  padding:.45rem .8rem;border-radius:0 4px 4px 0;cursor:pointer
}
.hc-newsletter button:hover{opacity:.85}
.hc-news-msg{margin-top:.5rem;font-size:.85rem}

.hc-social{margin-top:1rem;display:flex;gap:1rem}
.hc-social a{font-size:1.3rem;color:var(--hc-light)}
.hc-social a:hover{color:var(--hc-accent)}

.hc-foot-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:2rem;padding-top:1rem;
  text-align:center;font-size:.85rem;display:flex;
  flex-direction:column;gap:.4rem;
}
@media(min-width:600px){
  .hc-foot-bottom{flex-direction:row;justify-content:space-between;align-items:center}
}
