/* ── Site Footer ── */
.site-footer {
  background-color: var(--color-white);
  padding: 0;
}

/* Footer logo */
.site-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 40px 0 15px;
}

.site-footer__logo-line {
  flex: 1;
  height: 1px;
  background-color: var(--color-mauve-light);
}

.site-footer__logo {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: 48px;
  letter-spacing: 0.06em;
  color: var(--color-gray);
  text-decoration: none;
  padding: 0 20px;
  white-space: nowrap;
}

/* Footer navigation */
.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
}

/* 3+3 split: extra gap between 3rd and 4th menu item */
.site-footer__nav a:nth-child(3) {
  margin-right: 60px;
}

.site-footer__nav a {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-mauve);
  text-decoration: none;
  transition: color 0.5s ease;
}

.site-footer__nav a:hover {
  color: var(--color-mauve-light);
  opacity: 1;
}

/* Divider */
.site-footer__divider {
  height: 1px;
  background-color: var(--color-mauve-light);
  margin: 10px 0 30px;
}

/* Newsletter section */
.site-footer__newsletter {
  text-align: center;
  margin-bottom: 30px;
}

.site-footer__newsletter h2 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 30px;
  color: var(--color-mauve);
  margin-bottom: 25px;
}

.site-footer__newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.site-footer__newsletter-form input[type="text"],
.site-footer__newsletter-form input[type="email"] {
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  background-color: #efe8df;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-gray);
  min-width: 180px;
}

.site-footer__newsletter-form button {
  padding: 10px 20px;
  background: var(--color-mauve);
  color: var(--color-white);
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.site-footer__newsletter-form button:hover {
  opacity: 0.85;
}

/* Social icons */
.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.site-footer__social a {
  width: 40px;
  height: 28px;
  display: block;
}

.site-footer__social svg {
  width: 100%;
  height: 100%;
  fill: var(--color-mauve);
  transition: fill 0.5s ease;
}

.site-footer__social a:hover svg {
  fill: var(--color-mauve);
}

.site-footer__social a:hover {
  opacity: 1;
}

/* Bottom bar */
.site-footer__bottom {
  text-align: center;
  padding: 15px 0;
  font-size: 13px;
  color: var(--color-mauve);
}

.site-footer__bottom a {
  color: var(--color-mauve);
  text-decoration: none;
}

.site-footer__bottom a:hover {
  text-decoration: underline;
}

.site-footer__bottom p {
  margin-bottom: 5px;
  font-size: 13px;
}

/* Bottom divider */
.site-footer__bottom-divider {
  height: 11px;
  background-color: var(--color-mauve-light);
  margin-top: 15px;
}
