   /* ───────────────── FOOTER (SCANCHAMBER THEME) ───────────────── */

   .sc-footer {
    background: #fff;
    border-top: 1px solid var(--border, #D0D9E4);
    padding: 3rem 4rem;
    font-family: 'Inter', sans-serif;
    color: var(--text, #1A2635);
  }
  
  /* top section */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  /* logo block */
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text, #1A2635);
  }
  
  .footer-logo span {
    color: var(--primary, #2C5F8A);
  }
  
  .footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted, #6B8296);
    margin-top: 0.4rem;
  }
  
  /* links */
  .footer-links {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--text-muted, #6B8296);
    transition: 0.2s ease;
    letter-spacing: 0.02em;
  }
  
  .footer-links a:hover {
    color: var(--primary, #2C5F8A);
  }
  
  /* bottom bar */
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border, #D0D9E4);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted, #6B8296);
  }
  
  /* responsive */
  @media (max-width: 900px) {
    .sc-footer {
      padding: 2rem 1.5rem;
    }
  
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }