/* ── NEWSLETTER PAGE STYLES ── */

.nl-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nl-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 3rem 4rem;
  align-items: start;
  position: relative;
}

/* ── LEFT COPY ── */
.nl-copy {
  position: sticky;
  top: 7rem;
}

.nl-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.nl-bg-circle.nc1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(247,197,208,0.35) 0%, transparent 70%);
  top: -80px; left: -100px;
}
.nl-bg-circle.nc2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  bottom: 0; right: -60px;
}

.nl-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  color: var(--charcoal);
}

.nl-headline em {
  font-style: italic;
  color: var(--hot);
}

.nl-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--smoke);
  max-width: 440px;
  margin-bottom: 2rem;
}

/* Perks list */
.nl-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.nl-perks li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--smoke);
}

.perk-icon {
  font-size: 1.1rem;
  width: 2rem;
  text-align: center;
  flex-shrink: 0;
}

/* Social proof */
.nl-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sp-avatars {
  display: flex;
}

.sp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid white;
  margin-left: -8px;
  color: var(--charcoal);
}
.sp-avatars .sp-avatar:first-child { margin-left: 0; }

.sp-text {
  font-size: 0.82rem;
  color: #888;
}
.sp-text strong { color: var(--charcoal); }

/* ── RIGHT FORM ── */
.nl-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nl-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(26,26,46,0.1), 0 4px 16px rgba(214,63,107,0.07);
  position: relative;
}

.nl-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(247,197,208,0.5), rgba(201,168,76,0.15), transparent);
  z-index: -1;
}

.nl-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.nl-card-logo {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.nl-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.nl-card-sub {
  font-size: 0.82rem;
  color: #aaa;
}

/* Form fields */
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.nl-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nl-field label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
}

.required { color: var(--hot); }

.nl-field input {
  padding: 0.8rem 1rem;
  border: 1.5px solid #e8e0ea;
  border-radius: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: #fdf9fb;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.nl-field input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232,132,154,0.15);
  background: white;
}

.nl-field input::placeholder { color: #ccc; }

/* Vibe selector */
.nl-vibe-select label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 0.6rem;
}

.vibe-options {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.vibe-opt {
  background: #fdf6f0;
  border: 1.5px solid #e8e0ea;
  border-radius: 2rem;
  padding: 0.45rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--smoke);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.vibe-opt:hover {
  border-color: var(--rose);
  color: var(--hot);
}

.vibe-opt.selected {
  background: #fff0f3;
  border-color: var(--hot);
  color: var(--hot);
}

/* Submit button */
.nl-submit-btn {
  background: var(--hot);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 4px 20px rgba(214,63,107,0.35);
  margin-top: 0.4rem;
}

.nl-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(214,63,107,0.45);
}

.nl-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.nl-fine-print {
  font-size: 0.72rem;
  color: #bbb;
  line-height: 1.6;
  text-align: center;
}

.nl-fine-print a { color: var(--rose); }

/* Success / error states */
.nl-success {
  text-align: center;
  padding: 1rem 0;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.nl-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.nl-success p {
  font-size: 0.88rem;
  color: var(--smoke);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

.nl-error-msg {
  background: #fff0f3;
  border: 1px solid var(--blush);
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  color: var(--hot);
  text-align: center;
  margin-top: 0.5rem;
}

/* Preview card */
.nl-preview {
  background: var(--charcoal);
  border-radius: 1.2rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.nl-preview::before {
  content: '✉';
  position: absolute;
  right: -10px; top: -20px;
  font-size: 7rem;
  opacity: 0.04;
}

.preview-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.7rem;
}

.preview-subject {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.preview-snippet {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nl-main {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    gap: 3rem;
  }
  .nl-copy {
    position: static;
  }
}
