/* === Footer pubblico + floating contact === */

.site-footer{
  background: var(--ink);
  color: var(--bg);
  padding: 80px 48px 40px;
  position: relative;
  z-index: 1;
}
.site-footer-inner{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-brand{
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
.site-footer-brand em{ color: var(--gold-light); font-style: italic; }

.site-footer-desc{
  font-size: 14px;
  color: rgba(250, 246, 239, 0.6);
  line-height: 1.7;
  max-width: 320px;
}

.site-footer-col h4{
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 20px;
}
.site-footer-col ul{ list-style: none; }
.site-footer-col li{
  margin-bottom: 12px;
  color: rgba(250, 246, 239, 0.75);
  font-size: 14px;
  line-height: 1.6;
}
.site-footer-col a{
  color: rgba(250, 246, 239, 0.75);
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer-col a:hover{ color: var(--gold-light); }

.site-footer-bottom{
  max-width: 1300px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(250, 246, 239, 0.4);
  letter-spacing: 0.5px;
}

/* --- Floating contact --- */
.site-float-contact{
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--ink);
  color: var(--bg);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(26, 29, 43, 0.25);
  cursor: pointer;
  z-index: 50;
  transition: all 0.3s;
  text-decoration: none;
  border: 2px solid var(--gold);
}
.site-float-contact:hover{
  transform: scale(1.1);
  background: var(--gold);
}
.site-float-contact svg{ width: 24px; height: 24px; }

@media (max-width: 900px){
  .site-footer{ padding: 60px 20px 30px; }
  .site-footer-inner{
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .site-footer-bottom{
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .site-float-contact{ width: 52px; height: 52px; bottom: 20px; right: 20px; }
}
