/* Shared site footer (marketing + app pages) */
app-footer {
  display: block;
  position: relative;
  z-index: 45;
  width: 100%;
}

.site-footer {
  width: 100%;
  background: #1a1c1c;
  color: rgb(202 198 188 / 60%);
  font-family: "Inter", system-ui, sans-serif;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 40px 32px;
  width: 100%;
  padding: 48px 40px 36px;
}

.site-footer__logo {
  display: inline-block;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  line-height: 1;
}

.site-footer__brand p {
  margin: 16px 0 0;
  max-width: 320px;
  color: rgb(202 198 188 / 60%);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.site-footer__social a {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: #2a2d2f;
  text-decoration: none;
}

.site-footer__social a:hover {
  background: #34383b;
}

.site-footer__social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.site-footer__col h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__col a {
  display: block;
  margin-bottom: 10px;
  color: rgb(202 198 188 / 60%);
  font-size: 14px;
  text-decoration: none;
}

.site-footer__col a:hover {
  color: #ffb028;
}

.site-footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 14px;
  color: rgb(202 198 188 / 60%);
  font-size: 14px;
  line-height: 1.45;
}

.site-footer__contact a {
  display: inline;
  margin: 0;
  color: inherit;
}

.site-footer__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #2a2d2f;
  flex-shrink: 0;
}

.site-footer__icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  border-top: 1px solid #2a2d2f;
  padding: 18px 40px 22px;
}

.site-footer__bottom a {
  color: rgb(202 198 188 / 60%);
  font-size: 13px;
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: #ffb028;
}

@media (max-width: 1100px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .site-footer__brand,
  .site-footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
    padding: 36px 20px 28px;
  }

  .site-footer__brand,
  .site-footer__contact {
    grid-column: 1 / -1;
  }

  .site-footer__col h3 {
    margin-bottom: 12px;
  }

  .site-footer__col a {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .site-footer__bottom {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    padding: 16px 16px 20px;
  }

  .site-footer__bottom a {
    font-size: 12px;
    white-space: nowrap;
  }
}
