/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#colophon {
  position: relative;
  width: 100%;
  background:
    linear-gradient(to top, rgba(0,0,0,0.22), rgba(0,0,0,0.08)),
    var(--dark);
  border-top: 1px solid rgba(201,168,76,0.22);
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://zosse-nj2z4n9cl.live-website.com/wp-content/uploads/2026/02/file_00000000829c71f491e01ab0450a79e2.png');
  background-size: cover;
  background-position: center 70%;
  opacity: 0.04;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.footer-copy {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: rgba(245,238,220,0.62);
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 1.4px;
}

.footer-legal a {
  display: inline-block;
  color: var(--gold-light);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,168,76,0.32);
  opacity: 0.95;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus {
  color: var(--gold);
  border-bottom-color: rgba(201,168,76,0.75);
  opacity: 1;
}

.footer-legal .sep {
  color: rgba(201,168,76,0.4);
}

.footer-photo {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(245,238,220,0.5);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-photo a {
  color: rgba(201,168,76,0.8);
  text-decoration: none;
  border-bottom: 1px dotted rgba(201,168,76,0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-photo a:hover,
.footer-photo a:focus {
  color: var(--gold);
  border-bottom-color: rgba(201,168,76,0.75);
}

/* ═══════════════════════════════════════
   RESPONSIVE FOOTER
═══════════════════════════════════════ */
@media (max-width: 720px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 18px;
    gap: 10px;
  }

  .footer-copy {
    font-size: 10px;
  }

  .footer-legal {
    justify-content: center;
    gap: 8px 14px;
    font-size: 12px;
  }

  .footer-photo {
    justify-content: center;
    font-size: 10.5px;
  }
}

@media (max-width: 420px) {
  .footer-legal {
    flex-direction: column;
    gap: 6px;
  }

  .footer-legal .sep {
    display: none;
  }
}