.zp-footer {
  margin-top: var(--space-8);
  border-top: 1px solid rgba(47, 16, 21, 0.1);
  background: #ffffff;
}

.zp-footer__halo {
  background: linear-gradient(180deg, rgba(255, 240, 231, 0.55) 0%, rgba(255, 255, 255, 0) 50%), #ffffff;
  padding: var(--space-10) 0 var(--space-8);
  border-bottom: 1px solid rgba(47, 16, 21, 0.08);
}

.zp-footer__brandRow {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(32px, 5vw, 72px);
}

.zp-footer__mark {
  width: clamp(140px, 18vw, 220px);
  display: grid;
  place-items: center;
}

.zp-footer__name {
  font-weight: 820;
  letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: #18070a;
}

.zp-footer__tag {
  color: #8a121d;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.zp-footer__intro {
  margin-top: 10px;
  max-width: 480px;
  color: rgba(32, 11, 5, 0.75);
  line-height: 1.55;
}

.zp-footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.zp-footer__card {
  border: 1px solid rgba(47, 16, 21, 0.08);
  border-radius: 20px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 15px 30px rgba(15, 3, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zp-footer__cardTitle {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(69, 23, 29, 0.8);
}

.zp-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.zp-footer__link {
  text-decoration: none;
  color: #2d0f13;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-weight: 520;
  transition: color 0.2s ease, transform 0.2s ease;
}

.zp-footer__link:hover {
  color: #8a121d;
  transform: translateX(4px);
}

.zp-footer__dash {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(138, 18, 29, 0.4);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.zp-footer__link:hover .zp-footer__dash {
  transform: scaleX(1.3);
}

.zp-footer__top {
  border: 2px solid #8a121d;
  background: #ffffff;
  color: #8a121d;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 780;
  align-self: flex-start;
}

.zp-footer__top:hover {
  background: #8a121d;
  color: #ffffff;
}

.zp-footer__bar {
  border-top: 1px solid rgba(47, 16, 21, 0.08);
  padding: 14px 0;
  background: #faf6f7;
}


.zp-footer__barInner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.zp-footer__fine {
  color: #6b454a;
  font-size: 0.9rem;
}

.zp-footer__scrollTop {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(199, 120, 69, 0.35);
  background: linear-gradient(135deg, #fff7f0 0%, #ffe0cf 100%);
  color: #8a121d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(32, 11, 5, 0.25);
  z-index: 200;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  transform: translateY(6px);
}

.zp-footer__scrollTop:hover,
.zp-footer__scrollTop:focus-visible {
  background: linear-gradient(135deg, #ffeadc 0%, #ffd0b4 100%);
  color: #5a070f;
  transform: translateY(0) scale(1.02);
  box-shadow: 0 24px 45px rgba(32, 11, 5, 0.35);
}

.zp-footer__scrollIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.zp-footer__mark img {
  width: 100%;
  height: auto;
  max-width: unset;
}

@media (max-width: 860px) {
  .zp-footer__brandRow {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .zp-footer__intro {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .zp-footer__columns {
    grid-template-columns: 1fr;
  }

  .zp-footer__halo {
    padding: var(--space-8) 0 var(--space-6);
  }

  .zp-footer__barInner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

