/* ── Footer ─────────────────────────────────────────────────── */
    footer {
      background: var(--charcoal);
      color: var(--white);
      padding: 72px 40px 40px;
    }

    .footer__top {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .footer__brand-name {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: .03em;
    }
    .footer__brand-name span { color: var(--accent-lt); }

    .footer__brand-desc {
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255,255,255,.5);
      max-width: 280px;
      margin-bottom: 28px;
    }

    .footer__socials {
      display: flex;
      gap: 10px;
    }

    .footer__social {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transition: all var(--transition);
      cursor: pointer;
    }
    .footer__social:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .footer__col-title {
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 20px;
    }

    .footer__col-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer__col-links a {
      font-size: 13px;
      color: rgba(255,255,255,.5);
      transition: color var(--transition);
    }
    .footer__col-links a:hover { color: var(--white); }

    .footer__bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer__copy {
      font-size: 12px;
      color: rgba(255,255,255,.35);
    }

    .footer__payments {
      display: flex;
      gap: 8px;
      align-items: center;
    }
