.site-footer {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  font-family: 'PP Neue Montreal', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 100;
}
.footer-bg-img { position: absolute; inset: 0; z-index: 0; }
.footer-bg-img img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.35; }
.footer-subscribe {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3xs);
  text-align: center;
  padding: var(--s-4xl) var(--edge-gutter) var(--s-3xl);
}
.subscribe-title {
  font-size: var(--fs-lg);
  color: var(--white);
  letter-spacing: -0.01em;
  max-width: 32ch;
  margin: 0 auto;
  font-family: 'PP Neue Montreal', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 100;
}
.subscribe-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: rgba(77,77,77,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 200rem;
  padding: 0.25rem;
  max-width: 34rem;
  width: 100%;
  height: 3rem;
}
.subscribe-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: var(--fs-sm);
  padding: 0 1rem;
  min-width: 0;
  font-family: 'PP Neue Montreal', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 100;
}
.subscribe-input::placeholder { color: rgba(255,255,255,0.45); }
.subscribe-btn {
  color: var(--black);
  background: var(--white);
  border: none;
  border-radius: 200rem;
  height: 2.5rem;
  min-width: 12rem;
  padding: 0 1rem;
  font-size: var(--fs-xs);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  font-family: 'PP Neue Montreal', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 100;
}
.subscribe-btn:hover { background: var(--blue); color: var(--white); }
.subscribe-msg {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  display: none;
  padding: var(--s-3xs) 0;
  font-family: 'PP Neue Montreal', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 100;
}
.footer-nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: var(--s-xl) var(--edge-gutter) var(--s-lg);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-logo {
  display: block;
  width: 175px;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 1; }
.footer-logo img { width: 100%; display: block; }
.footer-tagline {
  font-size: var(--fs-2xs);
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
  max-width: 20ch;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.footer-col-label {
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: var(--fs-sm);
  color: var(--white);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.5); }
.footer-bottom {
  position: relative;
  z-index: 1;
  padding: var(--s-sm) var(--edge-gutter);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: var(--fs-2xs);
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-lang { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.footer-lang-item {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  padding: 0.25rem 0.6rem;
  border-radius: 200rem;
  font-size: var(--fs-2xs);
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-lang-item:hover { color: #FFFFFF; background: rgba(255,255,255,0.08); }
.footer-lang-item.is-active { color: #FFFFFF; background: rgba(255,255,255,0.1); }

@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-tagline { max-width: none; }
}
@media (max-width: 640px) {
  .subscribe-btn { min-width: 9rem; }
}
@media (max-width: 480px) {
  .footer-brand { flex-direction: column; align-items: flex-start; }
}
