:root {
  --container: 1500px;
}

/* ─── 11. FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--primary-color);
  color: var(--white-color);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* Footer logo */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__logo-img {
  width: auto;
  height: 200px;
  object-fit: contain;
}

/* Links column */
.footer__col-title {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.footer__col-title:last-of-type {
  width: 60%;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 1rem;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer__links a:hover { opacity: 1; }

/* Social */
.footer__social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}


.social-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
}
.social-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white-color);
}
.social-icon:hover {
  transform: scale(1.2);
}

/* Contact */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  opacity: 0.8;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--white-color);
}

@media (max-width: 900px) {
  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
  }
  .footer__logo {
    grid-column: 1 / -1;
  }
  .footer__logo-img {
    height: 100px;
  }
}

@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__social-icons { flex-wrap: wrap; }
}