.newsletter-section {
  padding: 42px 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(216, 184, 102, .12), transparent 28%),
    linear-gradient(180deg, #f8f2e6 0%, #fffdf8 100%);
  border-top: 1px solid rgba(20, 35, 58, .08);
}

.newsletter-panel {
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  color: var(--white);
  border: 1px solid rgba(216, 184, 102, .4);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 18%, rgba(36, 75, 115, .42), transparent 36%),
    linear-gradient(125deg, var(--navy-1000), var(--navy-900));
  box-shadow: var(--shadow-md);
}

.newsletter-panel::before {
  content: "";
  width: 240px;
  height: 240px;
  position: absolute;
  right: -105px;
  bottom: -135px;
  border: 1px solid rgba(216, 184, 102, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(216, 184, 102, .025), 0 0 0 54px rgba(216, 184, 102, .018);
  pointer-events: none;
}

.newsletter-copy,
.newsletter-form { position: relative; z-index: 1; }
.newsletter-copy { max-width: 620px; }
.newsletter-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}
.newsletter-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 14px;
  color: #c4d0de;
  font-size: .95rem;
}

.newsletter-form {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
}

.newsletter-fields {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 10px;
}

.newsletter-field {
  display: grid;
  gap: 6px;
}
.newsletter-field span {
  color: #dce4ed;
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .03em;
}
.newsletter-field input {
  width: 100%;
  min-height: 49px;
  padding: 11px 14px;
  color: var(--navy-950);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  background: var(--ivory-50);
  outline: none;
}
.newsletter-field input:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(216,184,102,.18);
}
.newsletter-submit {
  width: 100%;
  margin-top: 10px;
}
.newsletter-submit:disabled { cursor: wait; opacity: .72; transform: none; }
.newsletter-note {
  margin-top: 10px;
  color: #9fadc0;
  font-size: .63rem;
  line-height: 1.45;
}
.newsletter-status {
  min-height: 1.35em;
  margin-top: 8px;
  color: #f1d98d;
  font-size: .72rem;
  font-weight: 700;
}
.newsletter-status.success { color: #c7ecd0; }

.newsletter-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.newsletter-section-compact {
  padding: 30px 0 0;
  background: transparent;
  border-top: 0;
}
.newsletter-section-compact .newsletter-panel {
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .22);
}
.newsletter-section-compact .newsletter-copy h2 {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}
.newsletter-section-compact .newsletter-copy > p:not(.eyebrow) {
  font-size: .88rem;
}

@media (max-width: 900px) {
  .newsletter-panel,
  .newsletter-section-compact .newsletter-panel { grid-template-columns: 1fr; }
  .newsletter-copy { max-width: 760px; }
}

@media (max-width: 620px) {
  .newsletter-section { padding: 28px 0; }
  .newsletter-section-compact { padding: 24px 0 0; }
  .newsletter-panel { padding: 24px; }
  .newsletter-fields { grid-template-columns: 1fr; }
}
