.site-footer {
      color: rgba(255, 255, 255, 0.75);
      background: var(--color-black);
      font-family: "Lora", Georgia, serif;
    }

.footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 48px;
      padding: 76px 0 54px;
      align-items: start;
    }

.footer-logo-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

.footer-logo-copy {
      margin: 0;
      color: rgba(255, 255, 255, 0.76);
      font-size: 15px;
      line-height: 1.6;
      text-align: center;
      max-width: 320px;
    }

.footer-logo-copy {
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 15px;
      line-height: 1.6;
      max-width: 320px;
    }

.site-footer h3 {
      margin-bottom: 18px;
      color: var(--color-white);
      font-size: 24px;
    }

.site-footer p,
    .site-footer li {
      margin: 0;
      font-size: 15px;
    }

.site-footer ul {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

.social-icons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 8px;
    }

.social-icons a {
      display: inline-flex;
      width: 56px;
      height: 56px;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.06);
      transition: transform 220ms ease, border-color 220ms ease;
    }

.social-icons a:hover,
    .social-icons a:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(155, 107, 61, 0.48);
    }

.social-icons img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

.footer-languages {
      margin-top: 20px;
    }

.footer-languages__title {
      margin: 0;
      color: rgba(255, 255, 255, 0.9);
      font-family: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
      font-size: 28px;
      font-style: italic;
      font-weight: 400;
      line-height: 1.2;
    }

.footer-languages__flags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-top: 12px;
    }

.footer-languages__flag {
      width: 46px;
      height: 30px;
      display: block;
      padding: 2px;
      object-fit: cover;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(198, 138, 46, 0.46);
      border-radius: 4px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    }

.site-footer a {
      transition: color 200ms ease;
    }

.site-footer a:hover,
    .site-footer a:focus-visible {
      color: var(--color-gold);
    }

.copyright {
      padding: 20px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.58);
      font-family: "Inter", Arial, sans-serif;
      font-size: 12px;
      text-align: center;
    }

.logo-placeholder {
      width: min(220px, 100%);
      min-height: 120px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      border: none;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.04);
    }

.logo-placeholder img {
      width: 100%;
      height: auto;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }
