.site-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  background: var(--color-cream);
  border-top: 1px solid var(--color-border);
  padding: 6.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-brand .monogram {
  height: 78px;
  width: auto;
  object-fit: contain;
}

.footer-brand span {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-brown-mid);
  font-weight: 300;
}

.footer-items {
  display: flex;
  gap: 0;
  align-items: flex-start;
  flex: 1;
  justify-content: space-evenly;
  padding: 0 3rem;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-item .label {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sage);
  font-weight: 400;
}

.footer-item .value {
  font-size: 0.75rem;
  color: var(--color-brown-dark);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-item a.value:hover { color: var(--color-brown-mid); }

.footer-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(174,183,162,0.5);
  border-radius: 50%;
  transition: border-color 0.2s, background 0.2s;
}

.footer-socials a:hover {
  border-color: var(--color-sage);
  background: rgba(174,183,162,0.1);
}

.footer-socials svg {
  width: 14px;
  height: 14px;
  fill: var(--color-brown-mid);
}

.footer-hand {
  height: 160px;
  width: auto;
  flex-shrink: 0;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 2;
}

.footer-hand.flip { transform: scaleX(-1); }

/* Music notes */
.note-stream {
  position: absolute;
  left: 14%; right: 14%;
  top: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.note-stream .note {
  position: absolute;
  top: 50%;
  width: 20px; height: 28px;
  opacity: 0;
  color: var(--color-brown-mid);
}

.note-stream .note.ltr { left: 0; animation: float-ltr 17s infinite linear; }
.note-stream .note.rtl { right: 0; animation: float-rtl 17s infinite linear; }

.note-stream .note:nth-child(1) { animation-delay: 0s; top: 30%; }
.note-stream .note:nth-child(2) { animation-delay: 2.2s; top: 58%; }
.note-stream .note:nth-child(3) { animation-delay: 4.4s; top: 22%; }
.note-stream .note:nth-child(4) { animation-delay: 6.6s; top: 62%; }
.note-stream .note:nth-child(5) { animation-delay: 8.8s; top: 42%; }
.note-stream .note:nth-child(6) { animation-delay: 1.1s; top: 48%; }

@keyframes float-ltr {
  0%   { left: 0%;   transform: translateY(0)    rotate(-6deg); opacity: 0; }
  12%  { opacity: 0.5; }
  25%  { left: 25%;  transform: translateY(-10px) rotate(3deg); }
  50%  { left: 50%;  transform: translateY(6px)   rotate(-4deg); }
  75%  { left: 75%;  transform: translateY(-8px)  rotate(5deg); }
  88%  { opacity: 0.5; }
  100% { left: 100%; transform: translateY(0)     rotate(-3deg); opacity: 0; }
}

@keyframes float-rtl {
  0%   { right: 0%;   transform: translateY(0)    rotate(6deg);  opacity: 0; }
  12%  { opacity: 0.5; }
  25%  { right: 25%;  transform: translateY(-10px) rotate(-3deg); }
  50%  { right: 50%;  transform: translateY(6px)   rotate(4deg); }
  75%  { right: 75%;  transform: translateY(-8px)  rotate(-5deg); }
  88%  { opacity: 0.5; }
  100% { right: 100%; transform: translateY(0)     rotate(3deg);  opacity: 0; }
}

@media (max-width: 720px) {
  .site-footer {
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }
  .footer-items {
    flex-direction: column;
    gap: 1.4rem;
    padding: 0;
    align-items: center;
    text-align: center;
    flex: none;
  }
  .footer-item { align-items: center; }
  .footer-hand { display: none; }
  .note-stream { display: none; }
  .footer-brand .monogram { height: 64px; }
}
