.site-footer {
    position: relative;
    padding: 40px 0 24px;
    background: linear-gradient(180deg, #4f352c 0%, #432d25 100%);
    overflow: hidden;
  }
  
  .site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 24%),
      radial-gradient(circle at bottom right, rgba(255,255,255,0.04), transparent 20%);
    pointer-events: none;
  }
  
  .footer-shell {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }
  
  .footer-brand {
    display: flex;
    align-items: center;
  }
  
  .footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  
  .footer-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 18px;
  }
  
  .site-footer .brand-text {
    display: grid;
    line-height: 1;
  }
  
  .site-footer .brand-text strong {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fffaf8;
  }
  
  .site-footer .brand-text span {
    margin-top: 4px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
  }
  
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 24px;
    text-align: center;
    max-width: 450px;
  }
  
  .footer-link {
    position: relative;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.25s ease;
  }
  
  .footer-link:hover {
    color: #fff;
  }
  
  .footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #cbbab0, #ffffff);
    transition: width 0.25s ease;
  }
  
  .footer-link:hover::after {
    width: 100%;
  }
  
  .footer-contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
  }
  
  .footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #fff;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }
  
  .footer-social:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
  }
  
  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
  }
  
  .footer-social span {
    font-size: 0.92rem;
    font-weight: 600;
  }
  
  .footer-bottom {
    padding-top: 18px;
    text-align: center;
  }
  
  .footer-bottom p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.62);
  }
  
  @media (max-width: 980px) {
    .footer-shell {
      width: min(100% - 28px, 1200px);
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
      gap: 22px;
    }
  
    .footer-brand,
    .footer-contact {
      justify-content: center;
    }
  
    .footer-nav {
      gap: 14px 18px;
    }
  }
  
  @media (max-width: 640px) {
    .site-footer {
      padding: 34px 0 22px;
    }
  
    .footer-nav {
      flex-direction: column;
      gap: 12px;
    }
  
    .footer-contact {
      flex-direction: column;
      width: 100%;
      gap: 12px;
    }
  
    .footer-social {
      width: 100%;
      justify-content: center;
    }
  
    .site-footer .brand-text strong {
      font-size: 1.25rem;
    }
  }