/* ─── Footer ────────────────────────────────────────────────── */

.hhh-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.hhh-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 40px;
}

/* ── Left: brand stamp ── */
.hhh-footer__brand { display: flex; flex-direction: column; gap: 6px; }

.hhh-footer__stamp {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hhh-footer__stamp img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  flex-shrink: 0;
}

.hhh-footer__stamp strong {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.hhh-footer__stamp span {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  line-height: 1;
}

.hhh-footer__desc {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--fg-faint);
  line-height: 1.5;
  max-width: 300px;
}

.hhh-footer__office {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-faint);
  letter-spacing: 0.03em;
}

.hhh-footer__office em {
  font-style: normal;
  color: var(--fg-dim);
}

/* ── Centre: disclosure ── */
.hhh-footer__disclosure {
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.hhh-footer__disclosure p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
  white-space: nowrap;
}

.hhh-footer__disclosure a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  transition: text-decoration-color 0.15s;
}
.hhh-footer__disclosure a:hover {
  text-decoration-color: var(--fg-faint);
}

/* ── Right: contact ── */
.hhh-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 6px;
}

.hhh-footer__contact-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.hhh-footer__contact a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--fg-dim);
  transition: color 150ms ease;
}

.hhh-footer__contact a:hover { color: var(--fg); }

/* ── Bottom bar ── */
.hhh-footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 40px;
  border-top: 1px solid var(--line);
}

.hhh-footer__bar span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hhh-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }
  .hhh-footer__disclosure { align-items: flex-start; text-align: left; }
  .hhh-footer__bar { padding: 14px 24px; flex-direction: column; gap: 4px; text-align: center; }
}
