/*-------------------------------------------------
  Minimal Footer
--------------------------------------------------*/

.mf-footer-section {
  --mf-bg: #000000;
  --mf-heading: #f5f4ef;
  --mf-copy: rgba(220, 218, 212, 0.72);
  --mf-divider: rgba(255, 255, 255, 0.1);
  --mf-gold: var(--color-gold, #d4af37);
  --mf-gold-light: var(--color-gold-light, #f5d97a);
  background: var(--mf-bg);
  position: relative;
  padding: clamp(92px, 10vw, 126px) 0 clamp(26px, 3vw, 34px);
}

.mf-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: clamp(26px, 5vw, 90px);
  align-items: start;
  padding-bottom: clamp(30px, 4vw, 42px);
}

.mf-footer-left {
  max-width: 560px;
}

.mf-footer-brand {
  margin: 0 0 14px;
  color: var(--mf-heading);
  font-family: var(--tp-ff-unbounded);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mf-footer-left p {
  margin: 0;
  color: var(--mf-copy);
  font-size: 16px;
  line-height: 1.7;
  max-width: 54ch;
}

.mf-footer-connect-title {
  margin: 0 0 14px;
  color: rgba(245, 217, 122, 0.92);
  font-family: var(--tp-ff-unbounded);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mf-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mf-footer-links a {
  color: rgba(245, 244, 239, 0.86);
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.28s ease, transform 0.28s ease;
}

.mf-footer-links a:hover {
  color: var(--mf-gold-light);
  transform: translateX(2px);
}

.mf-footer-bottom {
  border-top: 1px solid var(--mf-divider);
  padding-top: 16px;
}

.mf-footer-bottom p {
  margin: 0;
  color: rgba(220, 218, 212, 0.56);
  font-size: 12px;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .mf-footer-section {
    padding-top: clamp(78px, 13vw, 96px);
    padding-bottom: 24px;
  }

  .mf-footer-section .container {
    padding-left: clamp(16px, 5vw, 22px);
    padding-right: clamp(16px, 5vw, 22px);
  }

  .mf-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }

  .mf-footer-brand {
    margin-bottom: 12px;
    font-size: clamp(17px, 4.8vw, 21px);
  }

  .mf-footer-left p {
    font-size: 14px;
    line-height: 1.62;
  }

  .mf-footer-links {
    gap: 9px;
  }

  .mf-footer-links a {
    font-size: 14px;
  }
}
