/* ============================================================
   NEWSLETTER SECTION
============================================================ */
.newsletter-section {
  background: var(--espresso);
  padding: var(--section-gap) 0;
}

.newsletter-section__body {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-section__label {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 14px;
}

.newsletter-section__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.newsletter-section__desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 32px;
}

.newsletter-form__fields {
  display: flex;
  gap: 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.newsletter-form__fields input {
  flex: 1;
  padding: 14px 18px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.92rem;
}

.newsletter-form__fields input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form__fields .btn {
  border-radius: 0;
  flex-shrink: 0;
}

.newsletter-form__success {
  margin-top: 12px;
  font-size: 0.88rem;
  color: #86efac;
}

@media (max-width: 480px) {
  .newsletter-form__fields {
    flex-direction: column;
  }
  .newsletter-form__fields .btn {
    border-radius: 0 0 var(--r-sm) var(--r-sm);
  }
}
