/* ============================================================
   FOOTER — brand left, nav mid, contact right
   ============================================================ */
footer {
  background: var(--prussian-deep);
  color: rgba(250, 247, 242, 0.6);
  padding: 88px 48px 36px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 150, 58, 0.35), transparent);
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(184, 150, 58, 0.15);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 0 1 320px;
  max-width: 340px;
}
.footer-brand .fb-mark {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand .fb-mark img { width: 44px; height: 44px; }
.footer-brand .fb-mark .wm {
  font-family: var(--display);
  font-size: 22px;
  color: var(--parchment);
}
.footer-brand .fb-mark .wm em { color: var(--burnished-gold); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  max-width: none;
  color: rgba(250, 247, 242, 0.62);
}

.footer-col {
  flex: 0 0 auto;
  min-width: 140px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 0 1 300px;
  max-width: 320px;
}
.footer-contact h4 {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burnished-gold);
  margin: 0;
}
.footer-contact-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  width: 100%;
}
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--burnished-gold);
}
.footer-contact-row p,
.footer-contact-row a {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.72);
  margin: 0;
  max-width: none;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: normal;
}
.footer-address span {
  display: block;
}
.footer-contact-row a {
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact-row a:hover { color: var(--burnished-gold); }

.footer-map {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 140px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  background: var(--prussian);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.footer-map:hover {
  border-color: var(--burnished-gold);
  box-shadow: 0 0 0 1px rgba(212, 174, 92, 0.25);
}
.footer-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: grayscale(0.35) contrast(1.05) brightness(0.9);
  transition: filter 0.4s ease;
}
.footer-map:hover iframe {
  filter: grayscale(0.1) contrast(1.02) brightness(1);
}
.footer-map-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.footer-col h4 {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burnished-gold);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--burnished-gold); }

.footer-bottom {
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
}
.footer-bottom .right { display: flex; gap: 28px; align-items: center; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--burnished-gold); }
.footer-bottom .footer-social {
  display: inline-flex;
  align-items: center;
  color: inherit;
  transition: color 0.3s;
}
.footer-bottom .footer-social:hover { color: var(--burnished-gold); }
.footer-bottom .footer-social svg { display: block; }

@media (max-width: 1024px) {
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-brand {
    flex: 1 1 100%;
    max-width: none;
  }
  .footer-contact {
    flex: 1 1 100%;
    max-width: none;
    padding-top: 8px;
    border-top: 1px solid rgba(184, 150, 58, 0.18);
  }
}
@media (max-width: 640px) {
  .footer-contact-body {
    flex-direction: column;
  }
  .footer-col {
    min-width: 0;
    flex: 1 1 40%;
  }
}
