/* ============================================================
   Next Steps — closing engagement section
   Sits at the foot of the page. Dark-mode background to bookend
   with the Hero. Co-branded with Felix + Morteza Capital.
   ============================================================ */

.next-steps {
  position: relative;
  background: var(--ocean-deep);
  color: var(--cream);
  padding: clamp(96px, 14vh, 160px) 0 clamp(48px, 7vh, 80px);
  border-top: 0.5px solid rgba(244, 237, 224, 0.08);
}

.next-steps__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 64px);
}

.next-steps__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.next-steps__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.next-steps__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  /* Definitively reduced — was over-scaled into a hero headline.
     This is a section lede, not a banner. */
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: var(--cream);
  margin: 0 auto;
  /* Wide enough that the full sentence lands on 2–3 lines max */
  max-width: 56ch;
}

.next-steps__copy {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(244, 237, 224, 0.82);
  letter-spacing: 0.005em;
  text-align: center;
  /* Wider wrapper so the paragraph lands on 3 lines (was wrapping to 5+) */
  max-width: 88ch;
  margin: 0 auto clamp(40px, 6vh, 56px);
}

/* ---------- Form ---------- */
.next-steps__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px clamp(24px, 4vw, 40px);
  margin-top: clamp(32px, 5vh, 48px);
}

.next-steps__field {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.next-steps__field--full {
  grid-column: 1 / -1;
}

.next-steps__field label {
  font-family: var(--font-sans);
  /* Larger + more readable than the previous 10px */
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.7);
  margin-bottom: 12px;
  font-weight: 500;
}

.next-steps__field input,
.next-steps__field select,
.next-steps__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 237, 224, 0.3);
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--cream);
  width: 100%;
  transition: border-color 200ms var(--ease-emerge);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.next-steps__field input:focus,
.next-steps__field select:focus,
.next-steps__field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.next-steps__field input::placeholder,
.next-steps__field textarea::placeholder {
  color: rgba(244, 237, 224, 0.3);
}

.next-steps__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9B68A' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 10px;
  padding-right: 22px;
}

.next-steps__field select option {
  background: var(--ocean-deep);
  color: var(--cream);
}

.next-steps__field textarea {
  resize: vertical;
  min-height: 80px;
  border-bottom: 0.5px solid rgba(244, 237, 224, 0.25);
}

.next-steps__submit-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.next-steps__submit {
  appearance: none;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-sans);
  /* Was 14px — bumped up so it reads at a glance */
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 24px 96px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 250ms var(--ease-emerge), color 250ms var(--ease-emerge);
  min-width: 320px;
}

.next-steps__submit:hover {
  background: var(--gold);
  color: var(--ocean-deep);
}

.next-steps__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* Honeypot — visually hidden but not display:none (bots skip display:none) */
.next-steps__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Inline form status — success / error / pending */
.next-steps__status {
  grid-column: 1 / -1;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  min-height: 1.2em;
  margin-top: 4px;
  transition: color 200ms var(--ease-emerge);
}

.next-steps__status[data-state="success"] { color: var(--gold); }
.next-steps__status[data-state="error"]   { color: rgba(255, 168, 140, 0.9); }
.next-steps__status[data-state="pending"] { color: rgba(244, 237, 224, 0.5); }

/* ---------- Co-brand footer ---------- */
.next-steps__cobrand {
  margin-top: clamp(96px, 14vh, 140px);
  padding-top: clamp(48px, 6vh, 72px);
  border-top: 0.5px solid rgba(244, 237, 224, 0.08);
  text-align: center;
}

.next-steps__cobrand-marks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 8vw, 96px);
  flex-wrap: wrap;
}

.next-steps__cobrand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  opacity: 0.92;
  transition: opacity 250ms var(--ease-emerge);
}

.next-steps__cobrand-link:hover {
  opacity: 1;
}

.next-steps__cobrand-img {
  display: block;
  width: auto;
  vertical-align: middle;
}

/* Felix wordmark — wide horizontal text (aspect ratio 2.92:1).
   At equal height, Felix occupies ~3× the area of Morteza, so we
   shrink Felix to ~55% of Morteza's height for visual mass parity. */
.next-steps__cobrand-img--felix {
  height: clamp(40px, 3.6vw, 64px);
}

/* Morteza monogram + wordmark — square-ish (0.86:1).
   Sized so its visual mass matches the Felix wordmark. */
.next-steps__cobrand-img--morteza {
  height: clamp(72px, 6.5vw, 116px);
}

.next-steps__cobrand-divider {
  width: 1px;
  height: clamp(60px, 8vh, 100px);
  background: rgba(244, 237, 224, 0.18);
  flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .next-steps__form {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .next-steps__cobrand-marks {
    flex-direction: column;
    gap: 32px;
  }

  .next-steps__cobrand-divider {
    width: 80px;
    height: 1px;
  }

  .next-steps__cobrand-img--felix   { height: 48px; }
  .ne