/* Home page footer: white rounded card on a light ground, brand + nav on top,
   contact block in the middle, meta row at the bottom. */

.site-footer {
  background: #f9fafc;
  padding: 0 30px 100px 30px;
}

/* the card spans the same content width as the about section
   (container width minus its 30px side padding) */
.site-footer-inner {
  max-width: 1450px;
  margin: 0 auto;
  background: #fff;
  border-radius: 40px;
  padding: 60px 60px 40px 60px;
}

/* top row: brand + navigation */
.site-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.site-footer-brand img {
  width: 34px;
  height: auto;
}

.site-footer-brand span {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1c1c1e;
  letter-spacing: -0.03em;
}

.site-footer-nav {
  display: flex;
  align-items: center;
  gap: 46px;
}

.site-footer-nav a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1c1c1e;
  text-decoration: none;
  letter-spacing: -0.03em;
  transition: color 0.2s;
}

.site-footer-nav a:hover {
  color: #8f8f8f;
  text-decoration: none;
}

/* contact block */
.site-footer-contact {
  margin: 70px 0 90px 0;
}

.site-footer-label {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3e3e40;
  margin-bottom: 10px;
}

.site-footer-mail {
  font-family: "Nunito Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #3e3e40;
  text-decoration: none;
  letter-spacing: -0.03em;
  transition: color 0.2s;
}

.site-footer-mail:hover {
  color: #1c1c1e;
  text-decoration: none;
}

/* bottom meta row */
.site-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #a5aab2;
}

.site-footer-claim {
  text-align: center;
}

.site-footer-legal {
  display: flex;
  gap: 40px;
}

.site-footer-legal a {
  color: #a5aab2;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-legal a:hover {
  color: #3e3e40;
  text-decoration: none;
}

/* simple variant for all other pages: just the meta line, no card */
.site-footer--simple {
  background: transparent;
  padding: 60px 30px 60px 30px;
}

.site-footer--simple .site-footer-meta {
  max-width: 1450px;
  margin: 0 auto;
}

@media only screen and (max-width: 991px) {
  .site-footer-inner {
    padding: 40px 30px 30px 30px;
    border-radius: 28px;
  }

  .site-footer-top {
    gap: 24px;
  }

  .site-footer-nav {
    gap: 28px;
  }

  .site-footer-contact {
    margin: 46px 0 56px 0;
  }

  .site-footer-mail {
    font-size: 1.8rem;
  }

  .site-footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-footer-claim {
    text-align: left;
  }

  .site-footer-legal {
    gap: 24px;
  }
}

@media only screen and (max-width: 600px) {
  .site-footer-nav {
    gap: 20px;
    flex-wrap: wrap;
  }

  .site-footer-nav a,
  .site-footer-brand span {
    font-size: 0.95rem;
  }

  .site-footer-mail {
    font-size: 1.5rem;
  }
}
