
  /* =========================================================
       Footer Social Icons
  ========================================================== */
  .social-icons {
    gap: 14px;
    font-size: 1.35rem;
    margin-top: 12px;
  }

  .social-icon {
    color: var(--accent-color, #f48c24);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .social-icon:hover {
    color: #fff;
    transform: translateY(-2px);
  }

  /* =========================================================
       Footer — agency credit band
  ========================================================== */
  #footer .footer-credit-band {
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem 1.25rem 1.7rem;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.035) 0%,
        rgba(255, 255, 255, 0.055) 100%
      );
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  }

  #footer .footer-credit-inner {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  #footer .site-design-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
  }

  #footer .site-design-label,
  #footer .site-design-name {
    font-family: "Gloock", serif;
  }

  #footer .site-design-label {
    font-size: 0.78rem;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: rgba(228, 225, 220, 0.72);
  }

  #footer .site-design-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  #footer .site-design-logo-link img {
    max-width: 100%;
  }

  #footer .site-design-logo {
    display: block;
    width: clamp(46px, 5vw, 64px);
    height: auto;
    opacity: 0.96;
    filter:
      drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34))
      drop-shadow(0 2px 5px rgba(0, 0, 0, 0.22))
      drop-shadow(0 0 6px rgba(244, 140, 36, 0.12))
      drop-shadow(0 0 14px rgba(244, 140, 36, 0.16));
    transition:
      transform 0.28s ease,
      filter 0.28s ease,
      opacity 0.28s ease;
  }

  #footer .site-design-name {
    font-size: 0.94rem;
    line-height: 1.15;
    color: rgba(244, 241, 238, 0.9);
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
  }

  #footer .site-design-logo-link:hover .site-design-logo,
  #footer .site-design-logo-link:focus-visible .site-design-logo {
    opacity: 1;
    transform: translateY(-1px) scale(1.02);
    filter:
      drop-shadow(0 10px 18px rgba(0, 0, 0, 0.38))
      drop-shadow(0 3px 6px rgba(0, 0, 0, 0.24))
      drop-shadow(0 0 9px rgba(244, 140, 36, 0.18))
      drop-shadow(0 0 18px rgba(244, 140, 36, 0.22));
  }

  #footer .site-design-name:hover,
  #footer .site-design-name:focus-visible,
  #footer .site-design-logo-link:hover + .site-design-name,
  #footer .site-design-logo-link:focus-visible + .site-design-name {
    color: rgba(255, 255, 255, 0.98);
    opacity: 0.92;
  }

  @media (prefers-reduced-motion: no-preference) {
    #footer .site-design-logo {
      animation: footerLogoBreathe 4.8s ease-in-out infinite;
      transform-origin: center;
    }

    @keyframes footerLogoBreathe {
      0%,
      100% {
        transform: scale(1);
        filter:
          drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34))
          drop-shadow(0 2px 5px rgba(0, 0, 0, 0.22))
          drop-shadow(0 0 6px rgba(244, 140, 36, 0.12))
          drop-shadow(0 0 14px rgba(244, 140, 36, 0.16));
      }

      50% {
        transform: scale(1.028);
        filter:
          drop-shadow(0 9px 16px rgba(0, 0, 0, 0.36))
          drop-shadow(0 2px 5px rgba(0, 0, 0, 0.22))
          drop-shadow(0 0 8px rgba(244, 140, 36, 0.16))
          drop-shadow(0 0 18px rgba(244, 140, 36, 0.2));
      }
    }
  }

  @media (prefers-reduced-motion: reduce) {
    #footer .site-design-logo {
      animation: none;
    }
  }

  @media (max-width: 767.98px) {
    #footer .footer-credit-band {
      margin-top: 1.5rem;
      padding: 1.35rem 1rem 1.5rem;
    }

    #footer .site-design-label {
      font-size: 0.74rem;
    }

    #footer .site-design-name {
      font-size: 0.9rem;
    }
  }