/* =========================================================
       SITE FOOTER
    ========================================================= */

    .site-footer {
      padding: 74px 0 0;
      color: rgba(255, 255, 255, 0.76);
      background: #04111d;
    }

    .site-footer p {
      color: rgba(255, 255, 255, 0.62);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 60px;
      padding-bottom: 52px;
    }

    .footer-column {
      min-width: 0;
    }

    .footer-column h3 {
      margin: 0 0 22px;
      color: var(--white);
      font-family: "DM Sans", Arial, sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .footer-logo-text {
      display: inline-block;
      margin-bottom: 20px;
      color: var(--white);
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(1.65rem, 2.2vw, 2.15rem);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.025em;
    }

    .footer-logo-text:hover {
      color: var(--gold);
    }

    .footer-about p {
      max-width: 390px;
      margin: 0 0 18px;
      line-height: 1.75;
    }

    .footer-email {
      display: inline-block;
      margin-bottom: 24px;
      color: var(--white);
      font-weight: 700;
      overflow-wrap: anywhere;
    }

    .footer-email:hover {
      color: var(--gold);
    }

    .footer-button {
      display: flex;
      width: fit-content;
    }

    .footer-column nav {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      gap: 13px;
    }

    .footer-column nav a {
      position: relative;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.94rem;
      line-height: 1.45;
      transition:
        color 0.2s ease,
        transform 0.2s ease;
    }

    .footer-column nav a:hover {
      color: var(--white);
      transform: translateX(4px);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
      padding: 24px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom p {
      margin: 0;
      color: rgba(255, 255, 255, 0.48);
      font-size: 0.8rem;
      line-height: 1.5;
    }

    @media (max-width: 1080px) {
      .footer-grid {
        gap: 40px;
      }
    }

    @media (max-width: 860px) {
      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px;
      }

      .footer-about {
        grid-column: 1 / -1;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 620px) {
      .site-footer {
        padding-top: 55px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-bottom: 42px;
      }

      .footer-about {
        grid-column: auto;
      }

      .footer-button {
        width: 100%;
      }

      .footer-bottom {
        gap: 8px;
      }
    }
