/* ============================================
   FOOTER — Tanjung Bayu
   ============================================ */

.footer {
  background-color: var(--c-deep-teal);
  padding: var(--sp-4xl) 0 var(--sp-lg);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

/* ---- Brand Area ---- */
.footer__brand {
  margin-bottom: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
}

.footer__logo {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 500;
  color: var(--c-white);
  display: block;
  margin-bottom: var(--sp-md);
  letter-spacing: -0.3px;
}

.footer__coords {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--c-green-light);
  margin-bottom: var(--sp-sm);
}

.footer__tagline {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--c-white-50);
}

/* ---- Columns ---- */
.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  margin-bottom: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer__col h4 {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-white-50);
  margin-bottom: var(--sp-md);
}

.footer__col p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-white-80);
}

.footer__col a {
  color: var(--c-white-80);
  transition: color var(--t-fast) var(--ease-out);
}

.footer__col a:hover {
  color: var(--c-white);
}

.footer__hours {
  margin-top: var(--sp-sm);
  font-size: 13px !important;
  color: var(--c-white-50) !important;
}

.footer__map-link {
  display: inline-block;
  margin-top: var(--sp-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-green-light) !important;
}

.footer__map-link:hover {
  color: var(--c-white) !important;
}

/* ---- Social ---- */
.footer__social {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer__social a {
  font-size: 14px;
  color: var(--c-white-80);
}

.footer__social a:hover {
  color: var(--c-white);
}

/* ---- Awards ---- */
.footer__awards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer__awards span {
  font-size: 13px;
  color: var(--c-white-50);
  line-height: 1.50;
}

/* ---- Bottom ---- */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--c-white-50);
}

.footer__back-top {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-white-50);
  transition: color var(--t-fast) var(--ease-out);
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.footer__back-top:hover {
  color: var(--c-white);
}

.footer__back-top span {
  font-size: 16px;
  line-height: 1;
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .footer {
    padding: var(--sp-xl) 0 var(--sp-md);
  }

  .footer__inner {
    padding: 0 var(--sp-md);
  }

  .footer__brand {
    margin-bottom: var(--sp-lg);
    padding-bottom: var(--sp-lg);
  }

  .footer__logo {
    font-size: 24px;
  }

  .footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md) var(--sp-lg);
    margin-bottom: var(--sp-lg);
    padding-bottom: var(--sp-lg);
  }

  .footer__col h4 {
    margin-bottom: var(--sp-sm);
    font-size: 10px;
  }

  .footer__col p {
    font-size: 13px;
    line-height: 1.50;
  }

  .footer__hours {
    display: none;
  }

  .footer__map-link {
    margin-top: var(--sp-sm);
    font-size: 13px;
  }

  .footer__social {
    gap: 4px;
  }

  .footer__social a {
    font-size: 13px;
  }

  .footer__awards span {
    font-size: 12px;
    line-height: 1.40;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    gap: var(--sp-sm);
    align-items: flex-start;
  }
}
