/**
 * AC Property — Site footer (widget areas, mock .acp-footer).
 */
footer#colophon.acp-footer,
footer#colophon.acp-footer.site-footer {
  font-family: Manrope, system-ui, sans-serif;
  background: var(--acp-charcoal, #0e0e12);
  color: var(--acp-fg-on-dark, #e8e6e3);
  padding: clamp(40px, 5vw, 56px) clamp(20px, 4.5vw, 64px) clamp(24px, 3vw, 32px);
  border-radius: var(--acp-radius-lg, 12px);
  box-sizing: border-box;
  max-width: var(--acp-content-max, 1200px);
  width: calc(100% - 2 * var(--acp-page-gutter, clamp(20px, 4.5vw, 56px)));
  margin: clamp(24px, 4vw, 48px) auto 0;
}

.acp-footer__inner {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.acp-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.acp-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 36ch;
}

.acp-footer__brand .textwidget,
.acp-footer__brand .widget {
  margin: 0;
}

.acp-footer__brand p,
.acp-footer__brand .textwidget p {
  font-size: 13px;
  color: var(--acp-fg-on-dark-2, rgba(232, 230, 227, 0.72));
  margin: 0;
  line-height: 1.55;
}

.acp-footer__lockup {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.acp-footer__lockup .red {
  color: var(--acp-accent, #c8202f);
}

.acp-footer__lockup .han {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--acp-fg-on-dark-2, rgba(232, 230, 227, 0.72));
  margin-top: 2px;
  letter-spacing: 0;
}

.acp-footer__col {
  min-width: 0;
}

.acp-footer__widget-title,
.acp-footer__col .widget-title,
.acp-footer__col > h5,
.acp-footer__col .widget > h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}

.acp-footer__col ul,
.acp-footer__col .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acp-footer__col li {
  margin: 0;
  padding: 0;
}

.acp-footer__col li a {
  font-size: 13px;
  color: var(--acp-fg-on-dark-2, rgba(232, 230, 227, 0.72));
  text-decoration: none;
  transition: color 0.15s ease;
}

.acp-footer__col li a:hover,
.acp-footer__col li a:focus {
  color: #fff;
}

.acp-footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--acp-fg-on-dark-2, rgba(232, 230, 227, 0.72));
}

.acp-footer__bottom-left,
.acp-footer__bottom-right {
  min-width: 0;
}

.acp-footer__bottom-left p,
.acp-footer__bottom-right p,
.acp-footer__bottom-left .textwidget,
.acp-footer__bottom-right .textwidget {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--acp-fg-on-dark-2, rgba(232, 230, 227, 0.72));
}

.acp-footer__bottom-right {
  text-align: right;
}

/* Stack on tablet / mobile (mock columns → single column). */
@media (max-width: 960px) {
  .acp-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .acp-footer__brand {
    max-width: none;
  }

  .acp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .acp-footer__bottom-right {
    text-align: left;
  }
}

@media (max-width: 600px) {
  footer#colophon.acp-footer,
  footer#colophon.acp-footer.site-footer {
    width: calc(100% - 2 * clamp(16px, 4vw, 24px));
    padding-left: clamp(16px, 4vw, 28px);
    padding-right: clamp(16px, 4vw, 28px);
  }
}
