footer {
  padding: var(--space-section) 0 2.5rem;
  background: var(--color-surface-soft);
  margin-top: var(--space-section);
}

.footer-inner {
  display: flex;
  gap: 2rem;
}

.footer-left {
  width: 28%;
  flex-shrink: 0;
}

.footer-logo-img {
  display: block;
  height: 64px;
  width: auto;
}

.footer-tagline {
  margin-top: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.ft-tel {
  margin-top: 2rem;
}

.ft-tel-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.ft-tel a {
  font-family: var(--font-stat);
  font-size: 1.6rem;
  color: var(--color-text-strong);
}

.ft-contact-info {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.footer-right {
  flex: 1;
  padding-left: 4%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ft-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.ft-nav dl dt {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-footer-title);
}

.ft-nav dl dd {
  margin-bottom: 0.35rem;
}

.ft-nav dl dd a {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-default);
}

.ft-nav dl dd a:hover {
  color: var(--color-brand-primary);
}

.ft-copy {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

@media (max-width: 992px) {
  .footer-inner { flex-direction: column; }
  .footer-left { width: 100%; text-align: center; }
  .footer-right { padding-left: 0; }
  .ft-nav { flex-wrap: wrap; }
  .ft-nav dl { width: 45%; margin-bottom: 1.5rem; }
}

@media (max-width: 640px) {
  .ft-nav dl { width: 100%; }
}
