:root {
  --fp-footer-bg: #262f41;
  --fp-footer-bg-2: #202837;
  --fp-footer-line: #3a475f;
  --fp-footer-text: #d7e0ef;
  --fp-footer-soft: #aebad1;
  --fp-footer-title: #f0f5ff;
  --fp-footer-link: #d8e2f3;
  --fp-footer-accent: #c29a86;
}

.site-footer-bento {
  margin-top: clamp(20px, 3vw, 34px);
  border: 1px solid var(--fp-footer-line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--fp-footer-bg) 0%, var(--fp-footer-bg-2) 100%);
  color: var(--fp-footer-text);
  box-shadow: 0 14px 32px rgba(8, 12, 20, 0.24);
  padding: clamp(16px, 2.4vw, 24px);
  font-family: "Work Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
}

.site-footer-bento,
.site-footer-bento * {
  font-family: "Work Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
}

.site-footer-bento__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

.site-footer-bento__card {
  border: 1px solid #334157;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(14px, 2vw, 18px);
  min-width: 0;
}

.site-footer-bento__brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}

.site-footer-bento__logo {
  width: clamp(76px, 9vw, 112px);
  height: clamp(76px, 9vw, 112px);
  border-radius: 14px;
  object-fit: contain;
  border: 1px solid var(--fp-footer-line);
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.site-footer-bento__title {
  margin: 0;
  color: var(--fp-footer-title);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  letter-spacing: 0.01em;
  font-weight: 700;
}

.site-footer-bento__lead {
  margin: 8px 0 0;
  color: var(--fp-footer-soft);
  line-height: 1.58;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0;
}

.site-footer-bento__links-title {
  margin: 0 0 10px;
  color: var(--fp-footer-title);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.site-footer-bento__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
}

.site-footer-bento__links a {
  color: var(--fp-footer-link);
  text-decoration: none;
  font-size: 0.91rem;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0;
}

.site-footer-bento__links a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--fp-footer-accent);
  text-underline-offset: 2px;
}

.site-footer-bento__bottom {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--fp-footer-line);
  display: grid;
  gap: 8px;
}

.site-footer-bento__copy {
  margin: 0;
  font-size: 0.85rem;
  color: #dce6f8;
  font-weight: 600;
}

.site-footer-bento__copy a {
  color: #e4edf8;
  text-decoration: none;
}

.site-footer-bento__copy a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer-bento__note {
  margin: 0;
  font-size: 0.75rem;
  color: #aab7cf;
  line-height: 1.6;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0;
}

@media (min-width: 821px) {
  .site-footer-bento {
    height: 292px;
  }

  .site-footer-bento__grid {
    min-height: 180px;
  }
}

@media (max-width: 820px) {
  .site-footer-bento__grid {
    grid-template-columns: 1fr;
  }

  .site-footer-bento__links {
    grid-template-columns: 1fr;
  }
}
