.site-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(247,244,239, 0.60);
  border-top: 1px solid var(--color-border);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

/* ── Brand column ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-brand .monogram {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.6rem;
}

.footer-brand > .footer-label {
  margin-bottom: 0.35rem;
}

.footer-brand > .footer-email {
  margin-bottom: 1.4rem;
}

.footer-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sage);
  font-weight: 700;
}

.footer-email {
  font-size: 0.78rem;
  color: var(--color-brown-dark);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--color-sage); }

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

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

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

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

/* ── Location columns ── */
.footer-location {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-location address {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-brown-dark);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.footer-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.footer-map iframe {
  display: block;
}

.footer-cta {
  margin-left: 0;
  align-self: flex-start;
  font-size: 0.6rem;
  padding: 0.6rem 1.2rem;
}

/* 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: 960px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1; /* full width on top, locations side-by-side below */
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem 2.5rem;
  }
  .footer-brand .monogram { margin-bottom: 0; height: 56px; }
  .footer-brand > .footer-label,
  .footer-brand > .footer-email { margin-bottom: 0; }
}

@media (max-width: 720px) {
  .site-footer {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }
  .footer-brand { align-items: center; text-align: center; }
  .footer-location { align-items: flex-start; }
  .footer-cta { align-self: stretch; text-align: center; }
}
