/* ── FOOTER ── */
  footer {
    background: #0F2A37;
    padding: 3.5rem 3rem 2rem;
    color: rgba(255,255,255,0.38);
  }

  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
  }

  .footer-brand span { color: var(--primary-light); }

  .footer-sub {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    margin-top: 3px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
  }

  .footer-col-label {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    margin-bottom: 1rem;
    display: block;
  }

  .footer-links { list-style: none; padding: 0; }
  .footer-links li { margin-bottom: 8px; }

  .footer-links a {
    text-decoration: none;
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.06em;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--primary-light); }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.38);
  }

  .footer-contact-item svg {
    width: 14px; height: 14px;
    stroke: var(--primary-light);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 3px;
  }

  .footer-brand-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    max-width: 1100px;
    margin: 2.5rem auto 1.5rem;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 11px;
  }

  .footer-badge {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-light);
    opacity: 0.7;
  }

  @media (max-width: 640px) {
    footer {
      padding: 2.5rem 1.25rem 1.5rem;
    }

    .footer-inner,
    .footer-bottom {
      justify-content: center;
      text-align: center;
    }

    .footer-contact-item {
      justify-content: center;
    }
  }
