.newsletter-section {
  position: relative;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--bg);
  padding-block: var(--space-9);
  overflow: hidden;
}

.newsletter-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.newsletter-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

.eyebrow--light {
  color: rgba(246, 241, 230, 0.75);
}

.newsletter-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-h2);
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.newsletter-copy p:not(.eyebrow) {
  font-size: var(--step-lead);
  color: rgba(246, 241, 230, 0.85);
  max-width: 30rem;
}

.newsletter-form {
  position: relative;
}

.newsletter-field {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(246, 241, 230, 0.45);
  background: rgba(0, 0, 0, 0.15);
  transition: border-color var(--dur-fast) var(--ease-editorial);
}

.newsletter-field:focus-within {
  border-color: var(--bg);
}

.newsletter-form input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 1.15rem 1.25rem;
  border: 0;
  background: transparent;
  color: var(--bg);
  font-family: var(--font-body);
  font-size: var(--step-body);
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(246, 241, 230, 0.55);
}

.newsletter-submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.5rem;
  border: 0;
  border-left: 1px solid rgba(246, 241, 230, 0.45);
  background: transparent;
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-editorial), color var(--dur-fast) var(--ease-editorial);
}

.newsletter-submit i {
  font-style: normal;
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease-editorial);
}

.newsletter-submit:hover {
  background: var(--bg);
  color: var(--sage-dark);
}

.newsletter-submit:hover i {
  transform: translateX(0.25rem);
}

.newsletter-form__status {
  font-size: var(--step-small);
  margin: 0.75rem 0 0;
  min-height: 1.2rem;
}

@media (max-width: 55rem) {
  .newsletter-grid {
    grid-template-columns: 1fr;
  }
}
