    :root {
      --shell: min(1180px, calc(100vw - 64px));
    }
    /* COMPACT FOOTER */

    .site-footer {
      background: #000;
      color: #fff;
    }

    .site-footer__inner {
      width: var(--shell);
      margin: 0 auto;
      padding: 34px 0;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
    }

    .site-footer h2 {
      margin: 0;
      color: #fff;
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 38px);
      font-weight: 300;
      letter-spacing: -0.035em;
      line-height: 1.1;
    }

    .footer-contact {
      margin: 0;
      color: rgba(255,255,255,0.84);
      font-size: 15px;
      font-weight: 300;
      letter-spacing: 0.04em;
      text-align: center;
    }

    .footer-contact a {
      color: inherit;
      text-decoration: none;
    }

    .footer-side {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 22px;
      margin: 0;
    }

    .footer-social a {
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
    }

    .footer-social svg {
      width: 18px;
      height: 18px;
      display: block;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    @media (max-width: 1080px) {
      :root {
        --shell: min(100vw - 40px, 1180px);
      }
          
      .site-footer__inner {
        grid-template-columns: 1fr;
        justify-items: start;
      }

      .footer-contact {
        text-align: left;
      }
    }

    @media (max-width: 780px) {
      :root {
        --shell: min(100vw - 30px, 1180px);
      }
          
      .footer-side {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
      }

      .footer-contact {
        font-size: 14px;
        line-height: 1.7;
      }
    }