.whisper-page {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
  width: min(calc(100% - 3rem), 1120px);
  min-height: calc(100svh - 250px);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 6rem) 0;
}

.whisper-intro h1,
.whisper-thanks h1 {
  max-width: none;
  margin: 0.25rem 0 1.35rem;
}

.whisper-intro > p:not(.eyebrow),
.whisper-thanks > p:not(.eyebrow) {
  max-width: 38rem;
  color: #d8bac7;
  font-size: 1rem;
  line-height: 1.75;
}

.whisper-intro .whisper-lead {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.45;
}

.whisper-form {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgb(255 126 187 / 26%);
  border-radius: 2rem 2rem 5rem 2rem;
  background: linear-gradient(145deg, rgb(39 5 23 / 90%), rgb(15 3 10 / 88%));
  box-shadow: 0 2.5rem 6rem rgb(0 0 0 / 48%), 0 0 4rem rgb(255 0 119 / 9%);
}

.whisper-form label {
  display: grid;
  gap: 0.55rem;
}

.whisper-form label > span {
  color: #f0cedd;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.whisper-form input,
.whisper-form textarea {
  width: 100%;
  border: 1px solid rgb(255 157 202 / 23%);
  border-radius: 0.85rem;
  outline: 0;
  background: rgb(4 1 3 / 72%);
  color: #fff3e8;
  font: inherit;
}

.whisper-form input {
  min-height: 3.2rem;
  padding: 0 1rem;
}

.whisper-form textarea {
  min-height: 10rem;
  padding: 0.9rem 1rem;
  resize: vertical;
}

.whisper-form input:focus,
.whisper-form textarea:focus {
  border-color: #ff69b4;
  box-shadow: 0 0 0 3px rgb(255 61 155 / 13%), 0 0 1.8rem rgb(255 0 128 / 12%);
}

.whisper-form button,
.return-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.25rem;
  border: 1px solid rgb(255 126 187 / 60%);
  border-radius: 999px;
  background: linear-gradient(135deg, #9e124f, #4c0829);
  box-shadow: 0 0 2rem rgb(255 0 128 / 15%);
  color: #fff4f9;
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
}

.whisper-form button:hover,
.whisper-form button:focus-visible,
.return-link:hover,
.return-link:focus-visible {
  border-color: #ffb3d5;
  box-shadow: 0 0 2.5rem rgb(255 0 128 / 28%);
}

.whisper-form .form-note {
  margin: 0;
  color: #9f8290;
  font-size: 0.72rem;
  line-height: 1.55;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

nav .is-current {
  color: var(--rose-light);
}

.whisper-thanks {
  position: relative;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.5rem;
  min-height: 100svh;
  padding: 2rem;
  overflow-x: hidden;
  text-align: center;
}

.whisper-thanks-logo {
  width: min(52vw, 360px);
}

.whisper-thanks-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.whisper-thanks .return-link {
  min-width: 15rem;
  margin-top: 1.5rem;
}

@media (max-width: 760px) {
  .whisper-page {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    width: min(calc(100% - 2rem), 680px);
    padding-top: 1.5rem;
  }

  .whisper-form {
    border-radius: 1.4rem 1.4rem 3.5rem 1.4rem;
  }

  .whisper-thanks {
    min-height: 100svh;
    padding: 1.5rem 1.25rem 2rem;
  }

  .whisper-thanks-logo {
    width: min(58vw, 260px);
  }
}
