/* ─── FOOTER ─── */
.xy-footer {
  background: var(--xy-brand-deep);
  color: rgba(255,255,255,0.82);
  padding: 60px 32px 0;
}
.xy-footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.xy-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(252,202,188,0.15);
}
.xy-footer-brand .xy-logo-name { color: var(--xy-brand-light); font-size: 20px; }
.xy-footer-brand .xy-logo-tag  { color: rgba(252,202,188,0.6); }
.xy-footer-brand .xy-logo-icon {
  background: linear-gradient(135deg, var(--xy-brand), var(--xy-brand-light));
}
.xy-footer-brand-desc {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-top: 14px; margin-bottom: 20px;
}
.xy-footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.65);
  margin-bottom: 8px; line-height: 1.6;
}
.xy-footer-contact-item a { color: var(--xy-brand-light); }
.xy-footer-contact-item a:hover { color: #fff; }
.xy-footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--xy-brand-light); }
.xy-footer-col-title {
  font-size: 13px; font-weight: 600;
  color: var(--xy-brand-light);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(252,202,188,0.2);
}
.xy-footer-links { list-style: none; padding: 0; margin: 0; }
.xy-footer-links li { margin-bottom: 9px; }
.xy-footer-links li a {
  font-size: 13.5px; color: rgba(255,255,255,0.6);
  transition: color 0.15s;
  text-decoration: none;
}
.xy-footer-links li a:hover { color: var(--xy-brand-light); }
.xy-footer-locations {
  list-style: none;
  padding-left: 0; margin: 0;
}
.xy-footer-locations li {
  font-size: 12.5px; color: rgba(255,255,255,0.55);
  margin-bottom: 9px; line-height: 1.55;
  padding-left: 12px; position: relative;
}
.xy-footer-locations li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--xy-brand-light);
}
.xy-footer-social-panel {
  display: flex; flex-direction: column; gap: 18px;
}
.xy-footer-social-title {
  font-size: 13px; font-weight: 600;
  color: var(--xy-brand-light);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(252,202,188,0.2);
}
.xy-qr-box {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(252,202,188,0.15);
  border-radius: 14px;
  padding: 12px 14px;
}
.xy-qr-img {
  width: 72px; height: 72px; flex-shrink: 0;
  border-radius: 10px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.xy-qr-img svg { width: 64px; height: 64px; }
.xy-qr-info { flex: 1; }
.xy-qr-info strong {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--xy-brand-light); margin-bottom: 3px;
}
.xy-qr-info span {
  font-size: 12px; color: rgba(255,255,255,0.6);
  line-height: 1.55; display: block;
}
.xy-social-icons {
  display: flex; gap: 10px; margin-top: 6px;
}
.xy-social-btn {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(252,202,188,0.2);
  border-radius: 10px;
  padding: 9px 14px;
  color: rgba(255,255,255,0.7);
  font-size: 12px; font-weight: 500;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  cursor: pointer;
  text-decoration: none;
}
.xy-social-btn:hover {
  background: rgba(252,202,188,0.15);
  color: #fff;
  border-color: rgba(252,202,188,0.45);
}
.xy-social-note { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 4px; }
.xy-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  padding: 20px 0;
  font-size: 12px; color: rgba(255,255,255,0.35);
}
.xy-footer-bottom a { color: rgba(252,202,188,0.6); text-decoration: none; }
.xy-footer-bottom a:hover { color: var(--xy-brand-light); }

/* ─── FOOTER RWD ─── */
@media (max-width: 1024px) {
  .xy-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .xy-footer-grid { grid-template-columns: 1fr; }