.np-booking-band {
  background: linear-gradient(135deg, #fff7ea 0%, #fffdf7 46%, #f4fff6 100%);
  border-top: 1px solid rgba(151, 82, 22, 0.14);
  border-bottom: 1px solid rgba(151, 82, 22, 0.14);
  padding: 54px 18px;
}

.np-booking-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(280px, 1.18fr);
  gap: 28px;
  align-items: stretch;
}

.np-booking-copy {
  background: #7a2814;
  color: #fff9ef;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(90, 34, 8, 0.2);
}

.np-booking-copy span {
  color: #ffd67a;
  font: 700 13px/1.3 Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.np-booking-copy h2 {
  color: inherit;
  font: 700 34px/1.12 Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  margin: 10px 0 12px;
}

.np-booking-copy p {
  color: rgba(255, 249, 239, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.np-booking-form {
  background: #ffffff;
  border: 1px solid rgba(122, 40, 20, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(122, 40, 20, 0.12);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
}

.np-booking-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.np-booking-field-full {
  grid-column: 1 / -1;
}

.np-booking-field label {
  color: #5f2514;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.np-booking-field input,
.np-booking-field textarea {
  width: 100%;
  border: 1px solid #e2cab1;
  border-radius: 7px;
  background: #fffdf9;
  color: #2c221b;
  font: 500 15px/1.45 inherit;
  letter-spacing: 0;
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.np-booking-field textarea {
  min-height: 108px;
  resize: vertical;
}

.np-booking-field input:focus,
.np-booking-field textarea:focus {
  background: #ffffff;
  border-color: #c77721;
  box-shadow: 0 0 0 3px rgba(199, 119, 33, 0.15);
}

.np-booking-submit {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #b33d19, #e58a1f);
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  min-height: 52px;
  padding: 14px 20px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  box-shadow: 0 14px 24px rgba(179, 61, 25, 0.25);
}

.np-booking-submit:hover,
.np-booking-submit:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(179, 61, 25, 0.3);
}

.np-booking-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.np-booking-status {
  grid-column: 1 / -1;
  color: #6b3218;
  font-size: 14px;
  line-height: 1.5;
  min-height: 21px;
}

.np-booking-status.is-error {
  color: #b00020;
}

.np-mailer-frame {
  border: 0;
  height: 1px;
  left: -9999px;
  opacity: 0;
  position: absolute;
  top: auto;
  width: 1px;
}

@media (max-width: 860px) {
  .np-booking-band {
    padding: 36px 14px;
  }

  .np-booking-wrap,
  .np-booking-form {
    grid-template-columns: 1fr;
  }

  .np-booking-copy {
    padding: 26px;
  }

  .np-booking-copy h2 {
    font-size: 29px;
  }

  .np-booking-form {
    padding: 20px;
  }
}
