/* Footer + cookie banner.
 * Shared between all pages. Markup generated by <casa-footer>.
 */

footer {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--charcoal);
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s;
}

footer a:hover { color: var(--gold); }

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-social a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-version {
  margin-top: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  font-family: 'DM Sans', sans-serif;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal);
  border-top: 1px solid rgba(201,169,110,0.3);
  padding: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transition: opacity 0.3s ease;
}

.cookie-banner.is-open { display: flex; }

.cookie-banner__text {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  line-height: 1.6;
  max-width: 700px;
}

.cookie-banner__text a {
  color: var(--gold);
  text-decoration: none;
}

.cookie-banner__btn {
  background: transparent;
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.cookie-banner__btn:hover {
  background: rgba(201,169,110,0.1);
}
