/* =========================
   Dryàs Footer (partial)
========================= */

:root{
  --footer-bg: #ffffff;
  --footer-border: rgba(0,0,0,0.10);
  --footer-text: rgba(0,0,0,0.62);
  --footer-text-strong: rgba(0,0,0,0.82);
}

.footer{
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
}

.footer-container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
}

.footer-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.25rem 0;
  gap: 2rem;
}


.footer-copyright{
  font-size: 14px;
  color: var(--footer-text);
}

.footer-links{
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link{
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-link:hover{
  color: var(--footer-text-strong);
  opacity: 0.95;
}

@media (max-width: 768px){
  .footer-container{ padding: 0 1.25rem; }

  .footer-content{
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem 0;
}

  .footer-links{
    flex-direction: column;
    gap: 0.85rem;
  }
}
