/* AMBER — newsletter band. Full-bleed gold band, centered white copy + pill form. */

.nb {
  background: var(--nb-band, #E6C744);
  padding: 88px 0;
}

.nb__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nb__heading {
  margin: 0;
  max-width: 18ch;
  color: var(--color-bg, #FFFFFF);
  font-family: var(--font-heading, 'Poppins'), system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
}

.nb__subtitle {
  margin: 18px 0 0;
  max-width: 46ch;
  color: var(--color-bg, #FFFFFF);
  font-family: var(--font-body, 'Poppins'), system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.nb__form {
  width: 100%;
  max-width: 440px;
  margin: 36px auto 0;
}

.nb__fields {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px;
  background: var(--color-bg, #FFFFFF);
  border-radius: 12px;
}

.nb__success {
  margin: 16px 0 0;
  color: var(--color-bg, #FFFFFF);
  font-family: var(--font-body, 'Poppins'), system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.nb__input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--color-text, #000000);
  font-family: var(--font-body, 'Poppins'), system-ui, sans-serif;
  font-size: 1rem;
}

.nb__input::placeholder {
  color: #6B6B6B;
}

.nb__input:focus {
  outline: none;
}

.nb__fields:focus-within {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.45);
}

.nb__button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  background: var(--color-primary, #000000);
  color: #FFFFFF;
  font-family: var(--font-body, 'Poppins'), system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.nb__button:hover {
  opacity: 0.85;
}

@media (max-width: 600px) {
  .nb {
    padding: 56px 0;
  }

  .nb__form {
    max-width: 360px;
  }

  .nb__fields {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nb__input {
    text-align: center;
  }

  .nb__button {
    width: 100%;
  }
}
