/* ================================
   BAYAN FOOTER – SIX SENSES STYLE
================================ */

.bayan-footer {
  background: #faf9f6;
  padding: 120px 20px 40px;
  font-family: 'Inter', sans-serif;
}

/* INNER */
.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 120px;
}

/* BRAND */
.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 280px;
}

/* LINKS */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.footer-col a {
  font-size: 14px;
  text-decoration: none;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: opacity 0.3s ease;
}

.footer-col a:hover {
  opacity: 0.6;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* BOTTOM */
.footer-bottom {
  max-width: 1200px;
  margin: 100px auto 0;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 13px;
  color: var(--text-muted);
}

/* SOCIAL */
.footer-social a {
  margin-left: 18px;
  font-size: 13px;
  text-decoration: none;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}

.footer-social a:hover {
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-social a {
    margin: 0 10px;
  }
}
/* SOCIAL ICONS */

.footer-social {
  display: flex;
  gap: 22px;
}

.footer-social a {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--text-dark);
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.6;
}

.footer-social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.footer-social svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}
@media (min-width: 900px) {
  .footer-social svg {
    width: 20px;
    height: 20px;
  }
}
