/* ═══════════════════════════════════════════════
   ProfiSaison — Footer CSS
   ═══════════════════════════════════════════════ */

.ps-footer {
  background-color: var(--van-dyke);
  color: #fff;
  padding: 4rem 0 0;
}

.ps-footer a {
  color: #D1D5DB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ps-footer a:hover {
  color: #fff;
}

/* ── Grid ─────────────────────────────────────── */

.ps-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .ps-footer__inner {
    grid-template-columns: 1fr 2fr 1fr;
    padding: 0 2rem;
  }
}

/* ── Brand Column ─────────────────────────────── */

.ps-footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1.5rem;
}

.ps-footer__company {
  margin-bottom: 1rem;
}

.ps-footer__company-name {
  font-family: var(--font-sans);
  font-weight: 600;
  color: #D1D5DB;
  font-size: 0.875rem;
}

.ps-footer__company-sub {
  font-family: var(--font-serif);
  color: #9CA3AF;
  font-size: 0.875rem;
}

.ps-footer__address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 1.6;
}

.ps-footer__address svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: #9CA3AF;
}

/* ── Links Columns ────────────────────────────── */

.ps-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ps-footer__section-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--ecru-gold);
  margin-bottom: 1rem;
}

.ps-footer__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ps-footer__link-list li {
  margin-bottom: 0.5rem;
}

.ps-footer__link-list a {
  font-family: var(--font-serif);
  font-size: 0.875rem;
}

/* ── Connect Column ───────────────────────────── */

.ps-footer__connect-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.ps-footer__connect-item svg {
  width: 18px;
  height: 18px;
  color: var(--chefchaouen);
  flex-shrink: 0;
}

.ps-footer__connect-item a {
  font-family: var(--font-serif);
  font-size: 0.875rem;
}

/* ── SAP Disclaimer ───────────────────────────── */

.ps-footer__disclaimer {
  max-width: var(--content-narrow);
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: #6B7280;
  line-height: 1.6;
  text-align: center;
}

/* ── Copyright Bar ────────────────────────────── */

.ps-footer__bottom {
  border-top: 1px solid #374151;
  margin-top: 3rem;
  padding: 2rem 1.5rem;
}

.ps-footer__bottom-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .ps-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.ps-footer__copyright {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: #9CA3AF;
}

.ps-footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.ps-footer__legal-links a {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: #9CA3AF;
}

.ps-footer__legal-links a:hover {
  color: #fff;
}
