/* ══════════════════════════════════════════════════════
   G2 SITE FOOTER — shared across pages
   Loaded into <div id="g2-footer"></div> via js/g2-footer.js
══════════════════════════════════════════════════════ */
.g2-footer {
  background: #0d0305;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 14px;
  line-height: 1.7;
}

.g2-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.15s ease;
}
.g2-footer a:hover,
.g2-footer a:focus {
  color: #ff8080;
}

.g2-footer-main {
  max-width: 1170px;
  margin: 0 auto;
  padding: 56px 20px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.g2-footer-brand .g2-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.g2-footer-brand .g2-footer-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.g2-footer-brand p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 18px;
}

.g2-footer-social {
  display: flex;
  gap: 10px;
}
.g2-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}
.g2-footer-social a:hover {
  background: var(--red, #e2001a);
  border-color: var(--red, #e2001a);
  color: #fff;
}

.g2-footer h4 {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.3px;
}

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

.g2-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.g2-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
}
.g2-footer-contact li i {
  margin-top: 3px;
  color: var(--red, #e2001a);
  width: 16px;
  text-align: center;
}
.g2-footer-contact li a {
  color: rgba(255, 255, 255, 0.78);
}

.g2-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}
.g2-footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

@media (max-width: 900px) {
  .g2-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .g2-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .g2-footer-main {
    grid-template-columns: 1fr;
    padding: 40px 20px 24px;
    gap: 28px;
  }
}
