/* =============================================================
   FOOTER
   Capricho del Mar by Z
============================================================= */
footer {
  background: var(--c-deep-2);
  padding: 3rem var(--sp-side) 2rem;
}

.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-block);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

/* Brand */
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin-bottom: 1rem;
  display: flex; align-items: baseline; gap: 0.2em;
}
.footer-brand-logo .byz {
  font-weight: 300;
  font-size: 0.7em;
  letter-spacing: 0.1em;
  opacity: 0.55;
}

.footer-brand-desc {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.62);
  max-width: 270px;
  margin-bottom: 1.75rem;
}

.footer-social { display: flex; gap: 0.625rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast);
}
.footer-social a:hover {
  border-color: var(--c-gold);
  background: rgba(201,169,110,0.08);
}
.footer-social svg {
  width: 14px; height: 14px;
  fill: rgba(245,240,232,0.7);
  transition: fill var(--dur-fast);
}
.footer-social a:hover svg { fill: var(--c-gold); }

/* Columnas */
.footer-col-title {
  font-size: var(--sz-label);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.375rem;
}

.footer-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.625rem;
}
.footer-list a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(245,240,232,0.65);
  transition: color var(--dur-fast);
}
.footer-list a:hover { color: var(--c-gold); }

.footer-address {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245,240,232,0.7);
}
.footer-address a { color: var(--c-gold); }

/* Horario pendiente en footer */
.hours-pending {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--sz-label);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold); opacity: 0.6;
  margin-top: 0.5rem;
}
.hours-pending::before {
  content: ''; display: block;
  width: 4px; height: 4px;
  background: var(--c-gold); border-radius: 50%;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1400px; margin: 2rem auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy {
  font-size: 0.6875rem;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  letter-spacing: 0.06em;
}
.footer-copy a { color: inherit; transition: color var(--dur-fast); }
.footer-copy a:hover { color: var(--c-gold); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
