  /* START FOOTER */

.site-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  flex-shrink: 0;
  min-height: var(--footer-height);
  width: 100%;
  font-family: "lores-15", sans-serif;
  font-weight: 700;
  font-style: normal;
  background-color: #f6f6f6; /* fallback/default */
  padding: 4rem 1rem 1rem;
  color: #000;
  font-size: 0.9rem;
}

/* Optional variant overrides */
.site-footer.grid-footer {
  background-color: #fffef9;
  padding: 4rem 1rem 1.5rem;
}

.footer-inner {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 2rem;
  padding: 0 2rem;
  width: 100%;
  text-align: left;
}

.footer-left,
.footer-middle,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-text {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.footer-text:hover {
  color: #ffd300 !important;
  text-decoration: underline !important;
}

.footer-email {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
}

.footer-email:hover {
  color: #ffd300;
  text-decoration: underline;
}

.footer-right {
  display: flex;
  flex-direction: column; /* stack .footer-h2 and icons */
  align-items: flex-start;
  gap: 0.5rem; /* applies between h2 and icon row */
}

.footer-right-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.no-circled {
  color: #000;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.no-circled:hover {
  color: #ffd300 !important;
}

.no-circled i {
  display: inline-block;
  transition: color 0.3s ease;
  font-size: 1.2rem !important;
}

.no-circled:hover i {
  color: #ffd300 !important;
}

/* footer color overrides */
.site-footer a,
.site-footer a i {
  color: #000 !important;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:hover i {
  color: #333 !important;
  text-decoration: underline;
}

.site-footer .footer-text:hover {
  color: #ffd300 !important;
  text-decoration: underline !important;
  transition: color 0.3s ease;
}

.site-footer .no-circled:hover {
  color: #ffd300 !important;
  text-decoration: none !important;
}

.site-footer .no-circled {
  text-decoration: none !important;
}

.site-footer .no-circled i {
  text-decoration: none !important;
  display: inline-block;
  transition: color 0.3s ease;
}

.site-footer .no-circled:hover i {
  color: #ffd300 !important;
}

/* Ensure email column isn't right-aligned */
.footer-middle {
  text-align: left;
}

/* Adjusted icon size */
.footer-right i {
  font-size: 1.65rem;
}

.footer-name {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.20em;
  line-height: 1.1 !important;
  margin-bottom: 0.1rem !important;
}

.footer-title {
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  line-height: 1.1 !important;
  margin-bottom: 2rem !important;
}

.footer-h2 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: block;
  width: 100%;
}

.footer-copyright {
  font-size: 0.8rem;
  color: #999;
  text-align: left;
  margin-top: auto !important;
  padding-left: 2rem;
  padding-bottom: 0.5rem;
}

/* Responsive footer layout for mobile screens */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }

  .footer-title {
    margin-bottom: 0.5rem !important;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    align-items: flex-start;
    width: 100%;
    margin-bottom: 2rem !important;
  }

  .footer-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }

  .footer-copyright {
    padding-left: 2rem;
    margin-top: 2rem !important;
    padding-bottom: 2rem;
    text-align: left;
  }
}

/* END FOOTER */