.site-messages {
  max-width: 960px;
  margin: 0.75rem auto 0;
  padding: 0 1rem;
}

.site-message {
  margin: 0.35rem 0;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-message--success {
  background: #e3f5e8;
  color: #14532d;
  border: 1px solid #86efac;
}

.site-message--error {
  background: #fee2e2;
  color: #7f1d1d;
  border: 1px solid #fca5a5;
}

.site-message--warning {
  background: #fef3c7;
  color: #78350f;
  border: 1px solid #fcd34d;
}

.site-message--info {
  background: #e0f2fe;
  color: #0c4a6e;
  border: 1px solid #7dd3fc;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 40px 22px;
  background: linear-gradient(135deg, #1a2f57 0%, #122140 100%);
  color: #f8f2e2;
}

.footer-left {
  flex: 1 1 320px;
}

.footer-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-left img {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
}

.footer-newsletter {
  flex: 1;
  min-width: 0;
}

.footer-newsletter-heading {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff8e7;
}

.footer-newsletter-lead {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e6dcc7;
}

.footer-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-end;
}

.footer-newsletter-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1 1 220px;
  align-items: stretch;
}

.footer-newsletter-fields .footer-newsletter-input {
  flex: 1 1 140px;
}

.footer-newsletter-input {
  flex: 1 1 180px;
  min-width: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(241, 218, 166, 0.35);
  background: rgba(255, 255, 255, 0.96);
  color: #1a2f57;
  font-size: 0.95rem;
}

.footer-newsletter-input::placeholder {
  color: #6b7280;
}

.footer-newsletter-input:focus {
  outline: 2px solid #f0c14b;
  outline-offset: 1px;
}

.footer-newsletter-submit {
  flex: 0 0 auto;
  padding: 0.55rem 1.15rem;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  color: #122140;
  background: linear-gradient(180deg, #f8e6b3 0%, #f0c14b 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.footer-newsletter-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.footer-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer h2 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  font-weight: 700;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin: 0.35rem 0;
}

.footer a {
  color: #f0e3bf;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

.footer-columns {
  flex: 1 1 320px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-bottom {
  flex: 1 1 100%;
  width: 100%;
  flex-basis: 100%;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(241, 218, 166, 0.25);
  text-align: center;
  color: #e6dcc7;
}

@media (max-width: 980px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-left {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-left img {
    align-self: flex-start;
  }
}
