  /* --- Added Styles for Logo Integration --- */
  
  .footer-custom-logo {
      height: 24px;
      /* Ideal balance to keep typography aligned cleanly */
      width: auto;
      /* Maintains crisp aspect ratio automatically */
      object-fit: contain;
      display: inline-block;
  }
  /* --- Existing Premier Layout Styles --- */
  
  .site-global-footer {
      background-color: #0b0f0c;
      padding: 80px 2rem 40px 2rem;
      color: rgba(255, 255, 255, 0.4);
      font-family: system-ui, -apple-system, sans-serif;
  }
  
  .footer-inner-container {
      max-width: 1440px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
  }
  
  .footer-top-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 3rem;
      flex-wrap: wrap;
  }
  
  .footer-brand-block {
      max-width: 360px;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
  }
  
  .footer-logo-wrapper {
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }
  
  .footer-brand-name {
      font-size: 1.15rem;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: -0.01em;
  }
  
  .footer-brand-name span {
      color: var(--accent-gold, #c5a880);
  }
  
  .footer-tagline-text {
      font-size: 0.85rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.4);
  }
  
  .footer-nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 0.25rem;
  }
  
  .foot-anchor {
      font-size: 0.8rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      transition: color 0.25s ease;
  }
  
  .foot-anchor:hover {
      color: #ffffff;
  }
  
  .footer-divider-line {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin: 4rem 0 2rem 0;
      width: 100%;
  }
  
  .footer-bottom-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
      font-size: 0.75rem;
  }
  
  .footer-copyright-meta {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
  }
  
  .dev-signature-credit {
      color: rgba(255, 255, 255, 0.2);
  }
  
  .dev-signature-credit a {
      color: rgba(255, 255, 255, 0.3);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s ease;
  }
  
  .dev-signature-credit a:hover {
      color: #81C784;
  }
  
  .footer-social-cluster {
      display: flex;
      align-items: center;
      gap: 1.5rem;
  }
  
  .social-icon-link {
      color: rgba(255, 255, 255, 0.3);
      transition: color 0.25s ease, transform 0.25s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
  }
  
  .social-icon-link:hover {
      color: #ffffff;
      transform: translateY(-1px);
  }
  
  @media (max-width: 768px) {
      .site-global-footer {
          padding: 60px 1.25rem 30px 1.25rem;
      }
      .footer-top-row {
          flex-direction: column;
          gap: 2.5rem;
          align-items: flex-start;
      }
      .footer-nav-links {
          flex-direction: column;
          align-items: flex-start;
          gap: 1.25rem;
          width: 100%;
      }
      .footer-divider-line {
          margin: 3rem 0 1.5rem 0;
      }
      .footer-bottom-row {
          flex-direction: column-reverse;
          align-items: flex-start;
          gap: 1.5rem;
          width: 100%;
      }
      .footer-social-cluster {
          width: 100%;
          justify-content: flex-start;
          border-bottom: 1px solid rgba(255, 255, 255, 0.03);
          padding-bottom: 1.25rem;
      }
  }